Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

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

t_tableName

The name of the table.

x_rowNumber

The number of the row to be deleted from the table.

t_colName

The name of a column of the table.

l_propertiesName

The list of the name of properties. The valid properties are enable, value, bgColor, and textColor.

Value Returned

l_propertiesValue

The value of the properties in the sequence they were specified.

nil

The function is not successful.

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
 ⠀
X