SMAPoint.GetPointCoord()SMATable.GetTableValue()Return the requested value at the row, column of the table. Arguments
ReturnTypeReal Examplelet tableValue (Real) let table (SMATable) set table = 'Structural Analysis Case.1\Simulation Resource Set.1\Tabular Amplitude.1\Tabular Amplitude Table' tableValue = table.GetTableValue(1,1) SMATable.SetTableValue()Assign the specified value at the row, column of the table. SignatureSMATable.SetTableValue(iRowIndex : Integer, iColumnIndex : Integer, iValue : Real) : Boolean Arguments
ReturnTypeBoolean Examplelet status (Boolean) let table (SMATable) set table = 'Structural Analysis Case.1\Simulation Resource Set.1\Tabular Amplitude.1\Tabular Amplitude Table' status = table.SetTableValue(1, 1, 2.5) |