OracleFormsTable¶
Oracle Forms Table.
UI element class: oracle.forms.ui.ExtendedFrame
Extends OracleFormsObject
Extends SeSSimulatedObject
Behavior Pattern: OracleFormsTableBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| Cell | Value of the specified cell. | GetCell | |
| ColumnCount | Number of columns in the table. | GetColumnCount | |
| ColumnName | Caption of a column. | GetColumnName | |
| RowCount | Number of rows in the grid. | GetRowCount |
Action Summary¶
| Action | Description |
|---|---|
| DoGetValue | Sets value of the table cell. |
| DoPress | Click the cell. |
| DoSetFocus | Sets keyboard input focus to the table cell. |
| DoSetValue | Sets value of the table cell. |
Property Detail¶
Cell¶
Value of the specified cell.
Getter Parameters:
| Name | Type | Description |
|---|---|---|
| row | number | Zero-based index of a row. |
| col | string | number | Name of a column or zero-based column index. |
Type: string|number|boolean
Accessors: GetCell
value = SeS('SomeOracleFormsTable').GetCell(/**number*/row, /**string|number*/col)
ColumnCount¶
Number of columns in the table.
Type: number
Accessors: GetColumnCount
value = SeS('SomeOracleFormsTable').GetColumnCount()
ColumnName¶
Caption of a column.
Getter Parameters:
| Name | Type | Description |
|---|---|---|
| col | number | Zero-based index of the column. |
Type: string
Accessors: GetColumnName
value = SeS('SomeOracleFormsTable').GetColumnName(/**number*/col)
RowCount¶
Number of rows in the grid.
Type: number
Accessors: GetRowCount
value = SeS('SomeOracleFormsTable').GetRowCount()
Action Detail¶
DoGetValue¶
Sets value of the table cell.
SeS('SomeOracleFormsTable').DoGetValue(row, col)
Parameters:
| Name | Type | Description |
|---|---|---|
| row | number | Table row index |
| col | string | number | Table column caption or index |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoPress¶
Click the cell.
SeS('SomeOracleFormsTable').DoPress(row, col)
Parameters:
| Name | Type | Description |
|---|---|---|
| row | number | Table row index |
| col | string | number | Table column caption or index |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetFocus¶
Sets keyboard input focus to the table cell.
SeS('SomeOracleFormsTable').DoSetFocus(row, col)
Parameters:
| Name | Type | Description |
|---|---|---|
| row | number | Table row index |
| col | string | number | Table column caption or index |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetValue¶
Sets value of the table cell.
SeS('SomeOracleFormsTable').DoSetValue(row, col, value)
Parameters:
| Name | Type | Description |
|---|---|---|
| row | number | Table row index |
| col | string | number | Table column caption or index |
| value | string | boolean | number | value to set |
Returns:
boolean: 'true' if success, 'false' otherwise.