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

xfgrSetTableCellValue

xfgrSetTableCellValue( 
t_tableName
t_rowNumber
t_columnNumber
t_value
) 
=> t / nil

Description

Sets the value of the specified row and column of the specified table with the specified value in the Create Fluid Guard Ring form.

Arguments

t_tableName

The name of the table in the Create Fluid Guard Ring form or any custom table that has been added to the form.

t_rowNumber

The row number of the cell for which the value needs to be updated.

t_columnNumber

The column number of the cell for which the value needs to be updated.

t_value

The value to be updated in the table cell specified by the row and column number.

Value Returned

t

The specified value has been set.

nil

The specified value has not been set.

Example

Sets test as the value for the cell at row number 1 and column number 3 in the table Outer Rings.

if(xfgrSetTableCellValue("Outer Rings" "1" "3" "test") then
    info("Value of outerRing 1 netname updated")
else
    info("Value of outerRing 1 netname could not be updated")
)

Return to top
 ⠀
X