Skip to main content

Document.Selection Property

Gets or sets the selected range in the document.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v14.2.Core.dll

#Declaration

DocumentRange Selection { get; set; }

#Property Value

Type Description
DocumentRange

A DocumentRange object, representing the DocumentRange.Start and DocumentRange.End positions of the selected text.

#Remarks

Use the Document.Copy, Document.Cut and Document.Paste methods without parameters to work with a selection in the document.

The DocumentRange.Start and DocumentRange.End properties of the Selection provides you with the positions which represent the selection's start and end.

Use the SubDocument.GetText method to obtain the plain text contained in the selection.

See Also