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

KanbanGroupFooterButtonOptions.Text Property

Gets or sets the text displayed in the Kanban group footer button.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

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

#Property Value

Type Default Description
String String.Empty

The text displayed in the Kanban group footer button.

#Property Paths

You can access this nested property as listed below:

Object Type Path to Text
KanbanGroup
.FooterButton .Text
TileViewOptionsKanban

#Remarks

To display the footer button set the Visible property to true. You can use the TileView.OptionsKanban.GroupFooterButton.Text property to specify the same text for all Kanban group footer buttons.

 tileView1.OptionsKanban.GroupFooterButton.Text = "Add a new tile";

You can specify the text for individual Kanban group footer buttons via the KanbanGroup.Text property. This property overrides the TileView.OptionsKanban.GroupFooterButton.Text setting.

 kanbanGroup1.FooterButton.Text = "Add a new tile";
See Also