Skip to main content

BaseEdit.ActualEditTemplate Property

Gets or sets the actual data template that defines the editor’s presentation. 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 DataTemplate ActualEditTemplate { get; }

Property Value

Type Description
DataTemplate

A ControlTemplate object representing the editor’s template.

Remarks

The editor can be presented by one of the following templates, depending on the value of the TextEdit.IsTextEditable property:

Template TextEdit.IsTextEditable
BaseEdit.EditTemplate true
TextEdit.EditNonEditableTemplate false

Use the ActualEditTemplate property to obtain the template that is actually used to present the button’s content.

See Also