xfgrSetTableProps
xfgrSetTableProps(
t_tableName
[ ?visible { t | nil } ]
)
=> t / nil
Description
Sets the properties of a table. You can use this function from the xFGR Create form customization callback functions.
Arguments
Value Returned
Example
Sets the properties of a table.
procedure(optionValueChanged(optionName value prevValue) xfgrSetTableProps("myTable" ?visible t) ) ;;xFGR Create form customization callback. It is triggered when any non-table GUI component changed xfgrOptionValueChangeCB("r" "optionValueChanged")
Return to top