KanbanGroupFooterButtonOptions.Visible Property
Gets or sets whether the Kanban group footer button is visible.
Namespace: DevExpress.XtraGrid.Views.Tile
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
Property Value
Type | Default | Description |
---|---|---|
DefaultBoolean | Default | A DefaultBoolean value that specifies whether the Kanban group footer button is visible. |
Available values:
Name | Description | Return Value |
---|---|---|
True | The value is true. |
|
False | The value is false. |
|
Default | The value is specified by a global option or a higher-level object. |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to Visible |
---|---|
KanbanGroup |
|
TileViewOptionsKanban |
|
Remarks
The TileView.OptionsKanban.GroupFooterButton.Visible property specifies the default visibility of all Kanban group footer buttons.
- DefaultBoolean.Default or DefaultBoolean.False - Kanban group footer buttons are hidden.
- DefaultBoolean.True - Kanban group footer buttons are visible.
You can override this setting for certain Kanban groups via the KanbanGroup.FooterButton.Visible property. If the KanbanGroup.FooterButton.Visible property is set to DefaultBoolean.Default, the visibility of footer buttons is defined by the TileView.OptionsKanban.GroupFooterButton.Visible property.
The code snippet below shows how to display footer buttons for all Kanban groups while hiding a specific group footer button.
tileView1.OptionsKanban.GroupFooterButton.Visible = DefaultBoolean.True;
//...
tileView1.OptionsKanban.Groups[1].FooterButton.Visible = DefaultBoolean.False;
The following image shows the result.