TableDeleteRow

Description

Deletes the specified row in the table.

Applies to

RichTextEdit control

Syntax

boolean rtename.TableDeleteRow(long tableID, long row)

Argument

Description

tableID

The unique ID that identifies the table.

row The row number to be deleted.

Return value

Boolean.

Returns true if it succeeds, and returns false if an error has occurred or if the row is not found.

Examples

The following example deletes the specified row:

long ll_tableid
boolean lb_rtn

ll_tableid = rte_1.TableInsert(3,4)
lb_rtn = rte_1.TableDeleteRow(ll_tableid,2)