Skip to main content

KanbanGroupFooterButtonOptions.Visible Property

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

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

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

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 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

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