AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.4" />

.NET API 1,232,384 bytes

 HtmlProgressElement

Represents the HTML progress element. https://html.spec.whatwg.org/multipage/forms.html#the-progress-element
public bool IsDeterminate { get; }

Gets if the progress bar is determinate. Otherwise it is considered to be an indeterminate progress bar.

public INodeList Labels { get; }

Gets the list of assigned labels.

public double Maximum { get; set; }

Gets or sets the maximum value.

public double Position { get; }

Gets the position.

public bool SupportsLabels { get; }

Gets if labels are supported.

public double Value { get; set; }

Gets or sets the current value.

public HtmlProgressElement(Document owner, string prefix = null)

Creates a new HTML progress element.