Skip to main content

DataControlBase.ColumnHeaderToolTipTemplate Property

Gets or sets the template that defines the presentation of a column header’s tooltip. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public DataTemplate ColumnHeaderToolTipTemplate { get; set; }

Property Value

Type Description
DataTemplate

A DataTemplate object that defines the presentation of a column header’s tooltip.

Remarks

Use the ColumnBase.HeaderToolTip property to set the tooltip’s text. Use the ColumnBase.HeaderToolTipTemplate property to define a custom representation for an individual column’s tooltip. Use the ColumnHeaderToolTipTemplate property to specify a common tooltip template for all the columns in the Grid Control. The ColumnBase.ActualHeaderToolTipTemplate property returns a column’s current tooltip template.

See Also