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

DataControlBase.HeaderToolTipShowMode Property

Gets or sets whether to display column header tooltips. This is a dependency property.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(ToolTipShowMode.Default)]
public ToolTipShowMode HeaderToolTipShowMode { get; set; }

Property Value

Type Description
ToolTipShowMode

A value that defines whether to display column header tooltips.

Available values:

Name Description
Default

The GridControl displays tooltips for all cells if you specify a custom tooltip (the CellToolTipTemplate property for data cells and the HeaderToolTip or HeaderToolTipTemplate properties for column headers).

If you do not specify a custom tooltip, the GridControl displays tooltips only for trimmed data cells and column headers.

TrimmedOnly

The GridControl displays tooltips for data cells and column headers whose values are trimmed.

Never

The GridControl does not display tooltips.

See Also