Enum
public enum MokaJsonToolbarMode
Namespace: Moka.Blazor.Json.Models
Specifies how toolbar buttons are displayed.
Fields
| Name | Description |
|---|---|
Icon static |
SVG icons only with tooltips. |
IconAndText static |
Both SVG icons and text labels. |
Text static |
Text labels only (default). |
Icon
Icon = 1
SVG icons only with tooltips.
IconAndText
IconAndText = 2
Both SVG icons and text labels.
Text
Text = 0
Text labels only (default).
View Source
/// <summary>
/// Specifies how toolbar buttons are displayed.
/// </summary>
public enum MokaJsonToolbarMode
{
/// <summary>
/// Text labels only (default).
/// </summary>
Text,
/// <summary>
/// SVG icons only with tooltips.
/// </summary>
Icon,
/// <summary>
/// Both SVG icons and text labels.
/// </summary>
IconAndText
}