xfgrGetCellProps
xfgrGetCellProps(t_tableName x_rowNumber t_colName[l_propertiesName] ) =>l_propertiesValue/ nil
Description
Returns the properties of a cell in 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 cell in the specified table.
procedure(tableValueChanged(tableName row colName value prevValue) xfgrGetCellProps(tableName row colName list("enable" "textColor" "bgColor"))
)
;;xFGR Create Form customization callback. It is triggered when cell is updated.
xfgrTableCellValueChangedCB("r" "tableValueChanged")
Return to top