Interface IHtmlOutputElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the output HTML element.
[DomName("HTMLOutputElement")]
public interface IHtmlOutputElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
- Inherited Members
- Extension Methods
Properties
DefaultValue
Gets or sets the default value.
[DomName("defaultValue")]
string DefaultValue { get; set; }
Property Value
Form
Gets the associated HTML form element.
[DomName("form")]
IHtmlFormElement? Form { get; }
Property Value
HtmlFor
Gets or sets the IDs of the input elements.
[DomName("htmlFor")]
ISettableTokenList HtmlFor { get; }
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 (output).
[DomName("type")]
string Type { get; }
Property Value
Value
Gets or sets the value.
[DomName("value")]
string Value { get; set; }