windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-kanbangroupfooterbuttonoptions-321ae52b.md
Gets or sets the text displayed in the Kanban group footer button.
Namespace : DevExpress.XtraGrid.Views.Tile
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue("")]
[XtraSerializableProperty]
public string Text { get; set; }
<XtraSerializableProperty>
<DefaultValue("")>
Public Property Text As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
The text displayed in the Kanban group footer button.
|
You can access this nested property as listed below:
| Object Type | Path to Text |
|---|---|
| KanbanGroup |
.FooterButton .Text
| | TileViewOptionsKanban |
.GroupFooterButton .Text
|
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";
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";
kanbanGroup1.FooterButton.Text = "Add a new tile"
See Also
KanbanGroupFooterButtonOptions Class