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

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

t_tableName

The name of 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 visible, enable, defValues, validValues, and label.

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