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

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

t_tablename

The name of the table.

?visible {t|nil}

Makes the property visible. Valid values are:

  • t: Makes a property visible.
  • nil: Makes a property invisible.

Value Returned

t

The property is set.

nil

The property is not set.

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