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
Form
Gets the associated HTML form element.
[DomName("form")]
IHtmlFormElement? Form { get; }
Property Value
IsDisabled
Gets or sets if the element is enabled or disabled.
[DomName("disabled")]
bool IsDisabled { get; set; }
Property Value
Name
Gets or sets the value of the name attribute.
[DomName("name")]
string? Name { get; set; }
Property Value
Type
Gets the type of input control (fieldset).
[DomName("type")]
string Type { get; }