Table of Contents

Interface IHtmlFieldSetElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the fieldset HTML element.

[DomName("HTMLFieldSetElement")]
public interface IHtmlFieldSetElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
Inherited Members
Extension Methods

Properties

Elements

Gets the elements belonging to this field set.

[DomName("elements")]
IHtmlFormControlsCollection Elements { get; }

Property Value

IHtmlFormControlsCollection

Form

Gets the associated HTML form element.

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

Property Value

IHtmlFormElement

IsDisabled

Gets or sets if the element is enabled or disabled.

[DomName("disabled")]
bool IsDisabled { get; set; }

Property Value

bool

Name

Gets or sets the value of the name attribute.

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

Property Value

string

Type

Gets the type of input control (fieldset).

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

Property Value

string