mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
24 lines
357 B
C#
24 lines
357 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Menu Item display style enum
|
|
/// </summary>
|
|
public enum MenuItemDisplayStyle
|
|
{
|
|
/// <summary>
|
|
/// Show text only
|
|
/// </summary>
|
|
Text,
|
|
|
|
/// <summary>
|
|
/// Show only icons
|
|
/// </summary>
|
|
Icon,
|
|
|
|
/// <summary>
|
|
/// Both icons and text are displayed
|
|
/// </summary>
|
|
IconAndText
|
|
}
|
|
|