Interface IHtmlProgressElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the progress HTML element.
[DomName("HTMLProgressElement")]
public interface IHtmlProgressElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILabelabelElement
- Inherited Members
- Extension Methods
Properties
Maximum
Gets or sets the maximum value.
[DomName("max")]
double Maximum { get; set; }
Property Value
Position
Gets the position.
[DomName("position")]
double Position { get; }
Property Value
Value
Gets or sets the current value.
[DomName("value")]
double Value { get; set; }