windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-kanbangroupfooterbuttonoptions-00799b83.md
Gets or sets whether the Kanban group footer button is visible.
Namespace : DevExpress.XtraGrid.Views.Tile
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean Visible { get; set; }
<XtraSerializableProperty>
<DefaultValue(DefaultBoolean.Default)>
Public Property Visible As DefaultBoolean
| 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.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
You can access this nested property as listed below:
| Object Type | Path to Visible |
|---|---|
| KanbanGroup |
.FooterButton .Visible
| | TileViewOptionsKanban |
.GroupFooterButton .Visible
|
The TileView.OptionsKanban.GroupFooterButton.Visible property specifies the default visibility of all Kanban group footer buttons.
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;
tileView1.OptionsKanban.GroupFooterButton.Visible = DefaultBoolean.True
'...
tileView1.OptionsKanban.Groups(1).FooterButton.Visible = DefaultBoolean.False
The following image shows the result.
See Also
KanbanGroupFooterButtonOptions Class