Table of Contents

Interface IHtmlCommandElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the command HTML element.

[DomName("HTMLCommandElement")]
public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
Inherited Members
Extension Methods

Properties

Command

Gets the assigned element.

[DomName("command")]
IHtmlElement Command { get; }

Property Value

IHtmlElement

Icon

Gets or sets the icon of the command.

[DomName("icon")]
string? Icon { get; set; }

Property Value

string

IsChecked

Gets or sets if the command is checked.

[DomName("checked")]
bool IsChecked { get; set; }

Property Value

bool

IsDisabled

Gets or sets if the command is disabled.

[DomName("disabled")]
bool IsDisabled { get; set; }

Property Value

bool

Label

Gets or sets the assigned label.

[DomName("label")]
string? Label { get; set; }

Property Value

string

RadioGroup

Gets or sets the id of the radio group of the command.

[DomName("radiogroup")]
string? RadioGroup { get; set; }

Property Value

string

Type

Gets or sets the type of command.

[DomName("type")]
string? Type { get; set; }

Property Value

string