TableCanChangeAttr

Description

Provides information about whether the attributes of all the selected table cells can be altered.

Applies to

RichTextEdit control

Syntax

boolean rtename.TableCanChangeAttr()

Return value

Boolean.

Returns False when the selection is not completely within a single table. Otherwise it returns True.

Examples

The following example gets information on whether the attributes of all the selected table cells can be altered:

long ll_tableid
boolean lb_rtn

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