Xbasic
a5_globalSetting_delete Function
Syntax
dim result as L = a5_globalSetting_delete(settingName as C)
Arguments
- settingNameCharacter
The name of the setting to delete.
Returns
- resultLogical
Returns .t. if the function call succeeds. Otherwise, returns .f..
Description
Deletes a setting from the Global Settings table.
Discussion
The a5_globalSetting_delete() function deletes a setting from the Global Settings table.
The Global Settings table must be configured to use this function in your web applications.
Example
dim settingName as c = "test" dim result as L result = a5_globalSetting_delete(settingName) ? result = .T.
Limitations
Requires Global Settings Table
See Also