Back to Devexpress

KanbanGroupFooterButtonOptions.Visible Property

windowsforms-devexpress-dot-xtragrid-dot-views-dot-tile-dot-kanbangroupfooterbuttonoptions-00799b83.md

latest3.7 KB
Original Source

KanbanGroupFooterButtonOptions.Visible Property

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

Declaration

csharp
[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean Visible { get; set; }
vb
<XtraSerializableProperty>
<DefaultValue(DefaultBoolean.Default)>
Public Property Visible As DefaultBoolean

Property Value

TypeDefaultDescription
DefaultBooleanDefault

A DefaultBoolean value that specifies whether the Kanban group footer button is visible.

|

Available values:

NameDescriptionReturn 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

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Visible
KanbanGroup

.FooterButton .Visible

| | TileViewOptionsKanban |

.GroupFooterButton .Visible

|

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.

csharp
tileView1.OptionsKanban.GroupFooterButton.Visible = DefaultBoolean.True;
//...
tileView1.OptionsKanban.Groups[1].FooterButton.Visible = DefaultBoolean.False;
vb
tileView1.OptionsKanban.GroupFooterButton.Visible = DefaultBoolean.True
'...
tileView1.OptionsKanban.Groups(1).FooterButton.Visible = DefaultBoolean.False

The following image shows the result.

See Also

Text

KanbanGroupFooterButtonOptions Class

KanbanGroupFooterButtonOptions Members

DevExpress.XtraGrid.Views.Tile Namespace