aspnetcore-js-devexpress-dot-richedit-c14eb7ec.md
Defines a table row in the document.
export class TableRow extends TableElementBase
var table = richEdit.document.tables.getByIndex(0);
var cell = table.rows.getByIndex(0).cells.getByIndex(0);
var text = richEdit.document.subDocuments.main.getText(cell.interval)
Provides information about the table row’s cells.
get cells(): TableCellCollection
| Type | Description |
|---|---|
| TableCellCollection |
An array of TableCell objects that store information about individual table cells.
|
Specifies the row’s height settings.
get height(): TableRowHeight
set height(value: TableRowHeight)
| Type | Description |
|---|---|
| TableRowHeight |
An object that contains row height settings.
|
Use the height property to specify the row height.
Gets an index of the row in a table.
get index(): number
| Type | Description |
|---|---|
| number |
The row index.
|
Use the index to access the corresponding row by the TableRowCollection.getByIndex method.
Gets the text buffer interval occupied by the current table row element.
get interval(): Interval
| Type | Description |
|---|---|
| Interval |
An object that contains the interval settings.
|
Returns the table that contains the current row.
get parentTable(): Table
| Type | Description |
|---|---|
| Table |
The table that contains the current row.
|