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

RowProperties.ToolTip Property

Gets or sets a custom tooltip for the current row header.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[DefaultValue("")]
[XtraSerializableProperty]
public virtual string ToolTip { get; set; }

Property Value

Type Default Description
String String.Empty

A string, which is a custom tooltip for the row header.

Remarks

If the VGridOptionsHint.ShowRowHeaderHints option is set to true, tooltips are supported for Row Headers.

When hovering with a mouse pointer over a row header where text is trimmed, a default tooltip is displayed. The default tooltip contains the row’s non-trimmed caption (RowProperties.Caption).

The ToolTip property allows you to provide a custom tooltip for a row header. When a custom tooltip is assigned to the row header, it’s displayed when an end-user hovers the mouse pointer over the row header, regardless of whether the text in the row header is trimmed or not.

The find panel searches for a row by its caption, tooltip, field name, and caption in the customization form. The SearchTags property allows you to provide custom tags by which the find panel can find this row.

See Also