DeleteKey method: BannerTile class
Syntax
DeleteKey(KEYNAME)
Description
Use the DeleteKey method to delete an individual context key and value from memory by specifying the key’s name. Only invoke this method if IsPersistContext is True.
Parameters
| Parameter | Description |
|---|---|
|
KEYNAME |
Specifies the name of the key as a string value. |
Returns
None.
Example
If &oBanner.IsKeyExist("SETID") Then
&oBanner.DeleteKey("SETID");
End-If;