Skip to main content

TextEdit.IsTextEditable Property

Gets or sets whether an end-user is allowed to edit the text displayed within the text box. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Editors

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public bool IsTextEditable { get; set; }

Property Value

Type Description
Boolean

true, to allow an end-user to edit the text displayed within the text box; otherwise, false.

Remarks

If the IsTextEditable property is set to false, an end-user is not allowed to change, select and copy the text displayed within the text box, but can invoke click editor buttons (if any) or a dropdown. To allow an end-user to copy the text, set the IsTextEditable and BaseEdit.IsReadOnly properties to true.

See Also