Extends SeSSimulatedObject.
Behavior Pattern: C1TrueDBGridBehavior
Property Summary
Property
|
Description
|
Getter
|
Setter
|
Cell
|
Text 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 table.
|
GetRowCount
|
|
SelectedColumn
|
Index of the selected column.
|
GetSelectedColumn
|
|
SelectedRow
|
Index of the selected row.
|
GetSelectedRow
|
|
Text
|
Text of the currently focused cell.
|
GetText
|
|
Action Summary
Action
|
Description
|
DoClickCell
|
Clicks the specified cell
|
DoFullText
|
Full text of the table (may be very long!).
|
Property Detail
Cell
Text of the specified cell.
Accessors: GetCell
ColumnCount
Number of columns in the table.
Accessors: GetColumnCount
ColumnName
Caption of a column.
Accessors: GetColumnName
RowCount
Number of rows in the table.
Accessors: GetRowCount
SelectedColumn
Index of the selected column.
Accessors: GetSelectedColumn
SelectedRow
Index of the selected row.
Accessors: GetSelectedRow
Text
Text of the currently focused cell.
Accessors: GetText
Action Detail
DoClickCell(row, col, clickType, xOffset, yOffset)
Clicks the specified cell
Parameters:
Name
|
Type
|
Description
|
row
|
number
|
Zero-based index if the row.
|
col
|
number
|
Zero-based index of the column.
|
clickType
|
string
|
Type of click, can be one of "L" - left click, "LD" - double left click, "R" - right click, "RD" - double right click, "M" - middle click, "MD" - double middle click, "N" - don't click
Optional, Default: L.
|
xOffset
|
number
|
X offset to click within node. Default is a center.
Optional.
|
yOffset
|
number
|
Y offset to click within node. Default is a center.
Optional.
|
Returns:
'true' if successful, 'false' otherwise
DoFullText()
Full text of the table (may be very long!).
Returns:
Table's full text
|