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

BaseEditSettings.ErrorToolTipContentTemplate Property

Gets or sets a template that presents the content of an editor’s error tooltip. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.Settings

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

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

Declaration

public DataTemplate ErrorToolTipContentTemplate { get; set; }

Property Value

Type Description
DataTemplate

A DataTemplate object that represents the data template.

Property Paths

You can access this nested property as listed below:

Show 11 property paths
Object Type Path to ErrorToolTipContentTemplate
BarEditItem
.EditSettings .ErrorToolTipContentTemplate
FilterField
.EditSettings .ErrorToolTipContentTemplate
TokenEditorBehavior
.TokenEditSettings .ErrorToolTipContentTemplate
GanttColumn
.ActualEditSettings .ErrorToolTipContentTemplate
ColumnBase
.ActualEditSettings .ErrorToolTipContentTemplate
GridColumn
.ActualEditSettings .ErrorToolTipContentTemplate
TreeListColumn
.ActualEditSettings .ErrorToolTipContentTemplate
TreeViewControl
.EditSettings .ErrorToolTipContentTemplate
CollectionDefinition
.EditSettings .ErrorToolTipContentTemplate
PropertyDefinition
.EditSettings .ErrorToolTipContentTemplate
SpreadsheetCustomCellEditEventArgs
.EditSettings .ErrorToolTipContentTemplate

Remarks

If an editor’s value is invalid and the data validation mechanism is enabled, an error icon is displayed within the editor. When the mouse pointer hovers over this icon, a tooltip that describes the error is displayed. To change the error tooltop’s content presentation, create a data template and assign it to the ErrorToolTipContentTemplate property.

To learn more, see Input Validation.

See Also