xfgrGetColumnProps
xfgrGetColumnProps(t_tableName t_colName[l_propertiesName] ) =>l_propertiesValue/ nil
Description
Returns the properties of a column of the specified table. This function is used from the xFGR Create form customization callback functions.
Arguments
|
The list of the name of properties. The valid properties are |
|
Value Returned
|
The value of the properties in the sequence they were specified. |
|
Example
Returns the properties of a column of the specified table.
procedure(tableValueChanged(tableName row colName value prevValue) when(tableName == "myTable" && colName == "myColumn" xfgrGetColumnProps("myTable" "myColumn" list("visible" "label" "enable")
)
)
;;xFGR Create Form customization callback. It is triggered when cell is updated. xfgrTableCellValueChangedCB("r" "tableValueChanged")
Return to top