Class ColumnMenuItemModel
Class that defines column menu item model.
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnMenuItemModel : Object
Constructors
ColumnMenuItemModel()
Declaration
public ColumnMenuItemModel()
Properties
Hide
Declaration
public bool Hide { get; set; }
Property Value
Type |
---|
System.Boolean |
IconCss
Defines class/multiple classes separated by a space for the menu Item that is used to include an icon. Menu Item can include font icon and sprite image.
Declaration
public string IconCss { get; set; }
Property Value
Type |
---|
System.String |
Id
Gets or sets the ID of the menu items.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The ID of the menu items as a string. The default value is an empty string. |
Items
Specifies the sub menu items that is the array of MenuItem model.
Declaration
public List<MenuItem> Items { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<MenuItem> |
Separator
Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
Declaration
public bool Separator { get; set; }
Property Value
Type |
---|
System.Boolean |
Text
Specifies text for menu item.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |
Url
Specifies URL for menu item that creates the anchor link to navigate to the URL provided.
Declaration
public string Url { get; set; }
Property Value
Type |
---|
System.String |