Skip to main content
Tab

VerticalGridTemplates.CategoryCaption Property

Gets or sets a template for displaying a category row‘s caption.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public virtual ITemplate CategoryCaption { get; set; }

Property Value

Type Default Description
ITemplate null

An object that implements the ITemplate interface.

Remarks

A category row provides the VerticalGridRow.HeaderCaptionTemplate property, which provides a custom template for displaying the caption of its header.

To set a custom template for a row header caption, use the VerticalGridRow.HeaderCaptionTemplate property.

Note

Once a template defined via the CategoryCaption property is created in a grid control, it is instantiated in a container object of the VerticalGridHeaderTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

To learn more, see Templates.

See Also