Class ColumnMenuItemModel
Class that defines column menu item model.
Inheritance
System.Object
ColumnMenuItemModel
Implements
System.IEquatable<ColumnMenuItemModel>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnMenuItemModel : Object, IEquatable<ColumnMenuItemModel>
Constructors
ColumnMenuItemModel()
Declaration
public ColumnMenuItemModel()
Properties
Hide
Declaration
public bool Hide { get; set; }
Property Value
Type | Description |
---|---|
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 | Description |
---|---|
System.String |
Id
Specifies the id for menu item.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Items
Specifies the sub menu items that is the array of MenuItem model.
Declaration
public List<MenuItem> Items { get; set; }
Property Value
Type | Description |
---|---|
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 | Description |
---|---|
System.Boolean |
Text
Specifies text for menu item.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
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 | Description |
---|---|
System.String |
Methods
Equals(ColumnMenuItemModel)
Declaration
public bool Equals(ColumnMenuItemModel columnMenuItemModel)
Parameters
Type | Name | Description |
---|---|---|
ColumnMenuItemModel | columnMenuItemModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>