MockParametricExpressionTable
A table (2 dimensional list) of MockParametricExpression items.
Usage locations
The MockParametricExpressionTable object can be accessed from the following locations:
- Properties
- MockEntity object has property ParametricValueTable.
- MockDomainEntityWithReferences object has property ParametricValueTable.
- MockDomainEntityWithRules object has property ParametricValueTable.
- MockEntityWithGroups object has property ParametricValueTable.
Method List (internal only)
- AddColumn ()
- Appends a new column to the table.
- AddRow ()
- Appends a new row to the table.
- ColumnCount ()
- Returns the number columns in the table. (Returns a number object.)
- Get (rowIndex number, columnIndex number)
- Returns the item at the given row and column indices. Indexing starts at 1. (Returns a MockParametricExpression object.)
- RowCount ()
- Returns the number of rows in the table. (Returns a number object.)
- Set (rowIndex number, columnIndex number, value MockParametricExpression)
- Set item at the given row and column indices. Indexing starts at 1.
- SetDimensions (rowCount number, columnCount number)
- Sets the number of rows and columns in the table.
Method Details (internal only)
- AddColumn ()
- Appends a new column to the table.
- AddRow ()
- Appends a new row to the table.
- ColumnCount ()
- Returns the number columns in the table.
- Return
- number
- The number of columns in the table.
- Get (rowIndex number, columnIndex number)
- Returns the item at the given row and column indices. Indexing starts at 1.
- Input Parameters
- Return
- MockParametricExpression
- The MockParametricExpression at the given indices.
- RowCount ()
- Returns the number of rows in the table.
- Return
- number
- The number of rows in the table.
- Set (rowIndex number, columnIndex number, value MockParametricExpression)
- Set item at the given row and column indices. Indexing starts at 1.
- Input Parameters
- rowIndex(number)
- The row index of the item to return.
- columnIndex(number)
- The column index of the item to return.
- value(MockParametricExpression)
- The MockParametricExpression item to be assigned to the table at the given indices.
- SetDimensions (rowCount number, columnCount number)
- Sets the number of rows and columns in the table.