Description
Gets the number of columns in a table in the RichTextEdit control.
Applies to
Syntax
long rtename.TableGetRowCount(long tableID)
Return value
Long.
Returns the number of rows that the table (with the specified table ID) contains. Returns 0 if it fails. Returns null if any argument is null.
Examples
The following example gets the number of rows in the specified table.
long ll_tableid,ll_rtn ll_tableid = rte_1.TableInsert(3,4) ll_rtn = rte_1.TableGetRowCount(ll_tableid)