Back to Devexpress

KanbanGroupFooterButtonOptions.Text Property

windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-kanbangroupfooterbuttonoptions-321ae52b.md

latest2.8 KB
Original Source

KanbanGroupFooterButtonOptions.Text Property

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

Declaration

csharp
[DefaultValue("")]
[XtraSerializableProperty]
public string Text { get; set; }
vb
<XtraSerializableProperty>
<DefaultValue("")>
Public Property Text As String

Property Value

TypeDefaultDescription
StringString.Empty

The text displayed in the Kanban group footer button.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Text
KanbanGroup

.FooterButton .Text

| | TileViewOptionsKanban |

.GroupFooterButton .Text

|

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.

csharp
tileView1.OptionsKanban.GroupFooterButton.Text = "Add a new tile";
vb
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.

csharp
kanbanGroup1.FooterButton.Text = "Add a new tile";
vb
kanbanGroup1.FooterButton.Text = "Add a new tile"

See Also

KanbanGroupFooterButtonOptions Class

KanbanGroupFooterButtonOptions Members

DevExpress.XtraGrid.Views.Tile Namespace