Description
Checks whether a table cell is set as the table header in a RichTextEdit control.
Applies to
Syntax
boolean rtename.TableGetCellHeader(long tableID, long row, long column)
Argument |
Description |
---|---|
tableID |
The unique ID that identifies the table. |
row | The row number of the cell. |
column | The column number of the cell. |
Return value
Boolean.
True means the cell is set as the table header. False means the cell is not set as the table header. Returns null if any argument is null.
Examples
The following example checks whether the specified cell is the table header.
long ll_tableid boolean lb_rtn ll_tableid = rte_1.TableInsert(3,4) lb_rtn = rte_1.TableGetCellHeader(ll_tableid,1,1)