ClearAll

Description

Deletes all content from the specified control, but does not store it in the clipboard.

Applies to

RichTextEdit

Syntax

objectname.ClearAll ( )

Argument

Description

objectname

Name of the RichTextEdit control

Returns

Long. Returns the number of characters removed from the RichTextEdit control.

Usage

Use to remove all content from a RichTextEdit control, including any table grids. To just delete selected text, use the Clear function. To delete text and store it in the clipboard, use the Cut function.

Examples

Example 1

This statement clears all content from the rte_1 RichTextEdit control.

rte_1.ClearAll()

See also