Enum
public enum MokaJsonToggleSize
Namespace: Moka.Blazor.Json.Models
Specifies the size of expand/collapse toggle indicators.
Fields
| Name | Description |
|---|---|
ExtraLarge static |
Extra-large toggle (16px font, 24px button). |
ExtraSmall static |
Extra-small toggle (6px font, 12px button). |
Large static |
Large toggle (13px font, 20px button). |
Medium static |
Medium toggle (10px font, 16px button). Default. |
Small static |
Small toggle (8px font, 14px button). |
ExtraLarge
ExtraLarge = 4
Extra-large toggle (16px font, 24px button).
ExtraSmall
ExtraSmall = 0
Extra-small toggle (6px font, 12px button).
Large
Large = 3
Large toggle (13px font, 20px button).
Medium
Medium = 2
Medium toggle (10px font, 16px button). Default.
Small
Small = 1
Small toggle (8px font, 14px button).
View Source
/// <summary>
/// Specifies the size of expand/collapse toggle indicators.
/// </summary>
public enum MokaJsonToggleSize
{
/// <summary>
/// Extra-small toggle (6px font, 12px button).
/// </summary>
ExtraSmall,
/// <summary>
/// Small toggle (8px font, 14px button).
/// </summary>
Small,
/// <summary>
/// Medium toggle (10px font, 16px button). Default.
/// </summary>
Medium,
/// <summary>
/// Large toggle (13px font, 20px button).
/// </summary>
Large,
/// <summary>
/// Extra-large toggle (16px font, 24px button).
/// </summary>
ExtraLarge
}