Table of Contents

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

string

Form

Gets the associated HTML form element.

[DomName("form")]
IHtmlFormElement? Form { get; }

Property Value

IHtmlFormElement

HtmlFor

Gets or sets the IDs of the input elements.

[DomName("htmlFor")]
ISettableTokenList HtmlFor { get; }

Property Value

ISettableTokenList

Labels

Gets the list of assigned labels.

[DomName("labels")]
INodeList Labels { get; }

Property Value

INodeList

Name

Gets or sets the name of the element.

[DomName("name")]
string? Name { get; set; }

Property Value

string

Type

Gets the type of input control (output).

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

Property Value

string

Value

Gets or sets the value.

[DomName("value")]
string Value { get; set; }

Property Value

string