Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IdxRichEditDocument.Copy(IdxRichEditDocumentRange) Method

Copies the specified document range or selection(s) to the clipboard.

#Declaration

Delphi
procedure Copy(const ARange: IdxRichEditDocumentRange); overload;

#Parameters

Name Type
ARange IdxRichEditDocumentRange

#Remarks

Call this procedure to copy the document selections to the clipboard. The second overloaded variant allows you to copy a specific document range passed as the ARange parameter instead of the document selection(s).

The first overloaded variant works identically to the Rich Edit control’s Copy procedure. Alternatively, you can execute a TdxRichEditControlCopySelection action object to produce the same effect.

Note

The Copy procedure is not affected by the Rich Edit control’s Options.Behavior.Copy property value.

See Also