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
Icon
Gets or sets the icon of the command.
[DomName("icon")]
string? Icon { get; set; }
Property Value
IsChecked
Gets or sets if the command is checked.
[DomName("checked")]
bool IsChecked { get; set; }
Property Value
IsDisabled
Gets or sets if the command is disabled.
[DomName("disabled")]
bool IsDisabled { get; set; }
Property Value
Label
Gets or sets the assigned label.
[DomName("label")]
string? Label { get; set; }
Property Value
RadioGroup
Gets or sets the id of the radio group of the command.
[DomName("radiogroup")]
string? RadioGroup { get; set; }
Property Value
Type
Gets or sets the type of command.
[DomName("type")]
string? Type { get; set; }