Constructor
new C1TableCell()
A C1TableCell object
Methods
columnName() → {Promise.<string>}
The column header name of the cell.
Returns:
a promise that is fulfilled with the column header name of the cell.
-
Type
- Promise.<string>
height() → {Promise.<number>}
The height of the cell in pixels.
Returns:
a promise that is fulfilled with the height of the cell in pixels.
-
Type
- Promise.<number>
sendChars(value) → {Promise.<void>}
Types the data into this cell one character at a time.
Parameters:
Name | Type | Description |
---|
value | Object | the value to enter. |
Returns:
a promise that is fulfilled when the sendChars operation ends.
-
Type
- Promise.<void>
setValue(value) → {Promise.<void>}
Sets the cell to a new value.
Parameters:
Name | Type | Description |
---|
value | string
|
number | The new value to be set. |
Returns:
a promise that is fulfilled when the operation is performed.
-
Type
- Promise.<void>
value() → {Promise.<Object>}
The content of the cell.
Returns:
a promise that is fulfilled with the content of the cell.
-
Type
- Promise.<Object>
width() → {Promise.<number>}
The width of the cell in pixels.
Returns:
a promise that is fulfilled with the width of the cell in pixels.
-
Type
- Promise.<number>
x() → {Promise.<number>}
The X-coordinate in pixels of the cell relative to the table.
Returns:
a promise that is fulfilled with the X-coordinate in pixels of the cell relative to the table.
-
Type
- Promise.<number>
y() → {Promise.<number>}
The Y-coordinate in pixels of the cell relative to the table.
Returns:
a promise that is fulfilled with the Y-coordinate in pixels of the cell relative to the table.
-
Type
- Promise.<number>