xfgrEnableOption
xfgrEnableOption(
g_optionName
)
=> t / nil
Description
Enables 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 enabled on the Create Fluid Guard Ring form. |
|
|
The specified option has not been enabled on the Create Fluid Guard Ring form. |
Example
Enables the wrapType option on the Create Fluid Guard Ring form.
if(xfgrEnableOption("wrapType") then info("wrapType option is enabled") else info("wrapType option does not exist")
)
Return to top