Class ToolbarButtonVisibilityMode
Specifies the visibility mode of a button in the RadToolbar control.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public sealed class ToolbarButtonVisibilityMode : Enum
Fields
Auto
The button visibility is determined automatically, based on the associated command. When the command can be executed, the button is visible, otherwise it is hidden.
Declaration
public const ToolbarButtonVisibilityMode Auto
Field Value
ToolbarButtonVisibilityMode
|
Hidden
The button is always hidden from the toolbar, regardless of the associated command.
Declaration
public const ToolbarButtonVisibilityMode Hidden
Field Value
ToolbarButtonVisibilityMode
|
value__
Declaration
public int value__
Field Value
System.Int32
|
Visible
The button is always visible in the toolbar, regardless of the associated command. When the command can be executed, the button is enabled, otherwise it is disabled.
Declaration
public const ToolbarButtonVisibilityMode Visible
Field Value
ToolbarButtonVisibilityMode
|