GanttContextMenuItemBuilder.Icon(String) Method
In This Article
Specifies the menu item's icon. Mirrors the client-side icon option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public GanttContextMenuItemBuilder Icon(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Gantt |
A reference to this instance after the method is called. |
#Remarks
@(Html.DevExtreme().Gantt()
.ContextMenu(cm => {
cm.Items(i => {
i.Add().Icon("MyIcon");
});
})
//...
)
See Also