AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.0" />

.NET API 960,512 bytes

 HtmlMenuItemElement

Represents the HTML menuitem element.
public IHtmlElement Command { get; }

Gets the assigned master command, if any.

public string Icon { get; set; }

Gets or sets the icon for the command.

public bool IsChecked { get; set; }

Gets or sets if the menuitem element is checked or not.

public bool IsDefault { get; set; }

Gets or sets if the menuitem element is the default command.

public bool IsDisabled { get; set; }

Gets or sets if the menuitem element is enabled or disabled.

public string Label { get; set; }

Gets or sets the user-visible label.

public string RadioGroup { get; set; }

Gets or sets the name of group of commands to treat as a radio button group.

public string Type { get; set; }

Gets or sets the type of command.

public HtmlMenuItemElement(Document owner, string prefix = null)

Creates a new HTML menuitem element.