Skip to main content
A newer version of this page is available. .

BaseEdit.ActualEditorControlTemplate Property

Gets the editor’s actual template. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public ControlTemplate ActualEditorControlTemplate { get; protected set; }

Property Value

Type Description
ControlTemplate

A ControlTemplate object that represents the editor’s template.

Remarks

The ActualEditorControlTemplate property returns a template which is currently active for the editor. For instance, if the editor is used by a grid for inplace editing, and its owning cell isn’t edited (the display mode), the ActualEditorControlTemplate property returns the template specified by the BaseEdit.DisplayTemplate property.

To customize the editor’s templates, use the BaseEdit.DisplayTemplate, BaseEdit.EditTemplate and TextEditBase.EditNonEditableTemplate properties.

See Also