Class HTMLLegendElement
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The HTMLLegendElement is an interface allowing to access properties of the {{HTMLElement("legend")}} elements. It inherits properties and methods from the HTMLElement interface.
[Value("HTMLLegendElement")]
public class HTMLLegendElement : HTMLElement
- Inheritance
-
HTMLLegendElement
- Inherited Members
Remarks
-The HTML element implementing this interface: legend
Constructors
HTMLLegendElement()
public HTMLLegendElement()
Properties
Align
[Value("align")]
public string Align { get; set; }
Property Value
Form
The form read-only property of the HTMLLegendElement interface returns an HTMLFormElement object that owns the HTMLFieldSetElement associated with this {{htmlelement("legend")}}, or null if this legend is not associated with a fieldset owned by a form.
[Value("form")]
public HTMLFormElement? Form { get; }
Property Value
- HTMLFormElement
An HTMLFormElement or
null.