AngleSharp by AngleSharp

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

.NET API 886,272 bytes

 IHtmlCommandElement

Represents the command HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom; using AngleSharp.Dom.Events; using System.Runtime.CompilerServices; namespace AngleSharp.Html.Dom { [System.Runtime.CompilerServices.NullableContext(2)] [DomName("HTMLCommandElement")] public interface IHtmlCommandElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers { [DomName("type")] string Type { get; set; } [DomName("label")] string Label { get; set; } [DomName("icon")] string Icon { get; set; } [DomName("disabled")] bool IsDisabled { get; set; } [DomName("checked")] bool IsChecked { get; set; } [DomName("radiogroup")] string RadioGroup { get; set; } [System.Runtime.CompilerServices.Nullable(1)] [DomName("command")] IHtmlElement Command { [System.Runtime.CompilerServices.NullableContext(1)] get; } } }