TextFrameGetMarkerLines

Description

Gets whether or not marker lines are visible for the text frame. Marker lines show a text frame's border if the text frame has no border line. A text frame's border line can be set with the TextFrameSetBorderWidth function.

Applies to

RichTextEdit control

Syntax

boolean rtename.TextFrameGetMarkerLines (integer textFrameID)

Argument

Description

textFrameID

The unique ID that identifies the text frame.


Return value

Boolean.

Returns true if the marker lines are visible and false if the marker lines are invisible. Returns null if any argument is null.

Examples

The following example gets whether the mark lines are visible for the specified text frame.

boolean lb_rtn
integer li_frameid

li_frameid = rte_1.TextFrameInsertAsChar(-1,5000,1000)
rte_1.TextFrameSetBorderWidth(li_frameid,0)

lb_rtn = rte_1.TextFrameGetMarkerLines()