Skip to main content

KanbanGroupFooterButtonOptions.Text Property

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

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.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