xfgrSetOptionProps
xfgrSetOptionProps(t_optionName[?visibleg_visible] [?enableg_enable] [?valueg_value] [?validValuesl_validValues]) =>t/ nil
Description
Sets the properties of an option in the xFGR Create form. You can use this function from the xFGR Create form customization callback functions.
Arguments
Value Returned
Example
Sets properties of an option in the xFGR Create form.
procedure(fgrCreateFormValueChanged(option value prevValue) let(() if(option == "device" && value == "ngr" then
xfgrSetOptionProps("numrows" ?value 2)
else
xfgrSetOptionProps("numrows" ?value 4)
)
) ) xfgrOptionValueChangeCB("r" "fgrCreateFormValueChanged")
Return to top