Skip to main content

TileNavElement.GroupName Property

Gets or sets the name of the tile group to which the TileNavElement belongs.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(null)]
[DXCategory("Properties")]
public virtual string GroupName { get; set; }

Property Value

Type Default Description
String null

A String value specifying the name of the tile group to which the TileNavElement belongs.

Remarks

TileNavElements can be combined into groups. You can specify the name of the group to which the current TileNavElement belongs with the GroupName property.

The following picture shows an example of grouped TileNavElements. The group names Managers and Sellers are displayed above the first TileNavElement of the corresponding group.

TileNavPane_GroupName

To specify the appearance settings used to paint group names, use the TileNavPaneDropDownOptions.AppearanceGroupText property.

See Also