Skip to main content
A newer version of this page is available. .

KanbanGroupFooterButtonOptions.Visible Property

Gets or sets whether the Kanban group footer button is visible.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Grid

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean Visible { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

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

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Property Paths

You can access this nested property as listed below:

Object Type Path 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.

tileView1.OptionsKanban.GroupFooterButton.Visible = DefaultBoolean.True;
//...
tileView1.OptionsKanban.Groups[1].FooterButton.Visible = DefaultBoolean.False;

The following image shows the result.

image

See Also