Interface IHtmlMeterElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the meter HTML element.
[DomName("HTMLMeterElement")]
public interface IHtmlMeterElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILabelabelElement
- Inherited Members
- Extension Methods
Properties
High
Gets or sets the high value.
[DomName("high")]
double High { get; set; }
Property Value
Low
Gets or sets the low value.
[DomName("low")]
double Low { get; set; }
Property Value
Maximum
Gets or sets the maximum value.
[DomName("max")]
double Maximum { get; set; }
Property Value
Minimum
Gets or sets the minimum value.
[DomName("min")]
double Minimum { get; set; }
Property Value
Optimum
Gets or sets the optimum value.
[DomName("optimum")]
double Optimum { get; set; }
Property Value
Value
Gets or sets the current value.
[DomName("value")]
double Value { get; set; }