Skip to main content

TextEdit.Cut() Method

Moves the current selection in the text editor to the clipboard.

Namespace: DevExpress.UI.Xaml.Editors

Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public virtual void Cut()

Remarks

To select the specified text within the editor, use the TextEdit.Select method. You can also select all the text in the editor via the TextEdit.SelectAll method. To paste text from the clipboard to the editor, use the TextEdit.Paste method. The TextEdit.Delete deletes the currently selected text from the text editor.

See Also