TableDeleteColumn

Description

Deletes the specified column in the table.

Applies to

RichTextEdit control

Syntax

boolean rtename.TableDeleteColumn(long tableID, long column)

Argument

Description

tableID

The unique ID that identifies the table.

column The column number to be deleted.

Return value

Boolean.

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

Examples

The following example deletes the specified table column:

long ll_tableid
boolean lb_rtn

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