Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RowProperties.ToolTip Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#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