Skip to content

Copy - DfBaseRichEdit

Copies the selected text to the Clipboard

Type: Procedure

Syntax

Procedure Copy

Call Example

Send Copy

Description

Copies the selected text to the Clipboard.

Sample

You can call CanCopy to determine whether a copy operation will be successful.

Procedure CopyText
    Boolean bCanCopy

    get CanCopy to bCanCopy

    if bCanCopy begin
        send Copy
    end
End_Procedure