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

RowProperties.Caption Property

Gets or sets the caption for a row item.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value specifying the caption of a row item. If not set, returns an empty string.

Remarks

Use this property to specify the string that describes data which is represented by a row item. If the row to which the item belongs is visible, the row item caption is displayed as a row header in the header panel of a vertical grid control.

RowProperties_Caption

This property is not initially set (it is equal to an empty string). You should set the Caption property manually (either at design time or runtime) for a row item to display the caption.

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Caption property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also