xfgrDisableOption
xfgrDisableOption(
g_optionName
)
=> t / nil
Description
Disables the specified option on the Create Fluid Guard Ring form.
Arguments
|
The name of an existing fluid guard ring option or a custom option name that has been added to the form. |
Value Returned
|
The specified option has been disabled on the Create Fluid Guard Ring form. |
|
|
The specified option has not been disabled on the Create Fluid Guard Ring form. |
Example
Disables the wrapType option on the Create Fluid Guard Ring form.
if(xfgrDisableOption("wrapType") then info("wrapType option is disabled") else info("wrapType option does not exist")
)
Return to top