Interface IHtmlKeygenElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the keygen HTML element.
[DomName("HTMLKeygenElement")]
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
- Inherited Members
- Extension Methods
Properties
Autofocus
Gets or sets the autofocus HTML attribute, which indicates whether the control should have input focus when the page loads.
[DomName("autofocus")]
bool Autofocus { get; set; }
Property Value
Challenge
Gets or sets the challenge attribute.
[DomName("challenge")]
string? Challenge { get; set; }
Property Value
Form
Gets the associated HTML form element.
[DomName("form")]
IHtmlFormElement? Form { get; }
Property Value
IsDisabled
Gets or sets if the keygen is enabled or disabled.
[DomName("disabled")]
bool IsDisabled { get; set; }
Property Value
KeyEncryption
Gets or sets the type of encryption used.
[DomName("keytype")]
string? KeyEncryption { get; set; }
Property Value
Labels
Gets the list of assigned labels.
[DomName("labels")]
INodeList Labels { get; }
Property Value
Name
Gets or sets the name of the element.
[DomName("name")]
string? Name { get; set; }
Property Value
Type
Gets the type of input control (keygen).
[DomName("type")]
string Type { get; }