Class ProgressItem
Class representing a progress bar in the plugin UI.
Inheritance
System.Object
ProgressItem
Namespace: Emby.Web.GenericEdit.Elements
Assembly: Emby.Web.GenericEdit.dll
Syntax
public class ProgressItem
Constructors
ProgressItem()
Initializes a new instance of the Progress
Declaration
public ProgressItem()
ProgressItem(Int32, Int32, String)
Initializes a new instance of the Progress
Declaration
public ProgressItem(int currentValue, int maxValue, string progressText)
Parameters
Type | Name | Description |
---|---|---|
System. |
currentValue | The current value. |
System. |
maxValue | The maximum value. |
System. |
progressText | The progress text. |
Properties
CurrentValue
Gets or sets the current value.
Declaration
public int CurrentValue { get; set; }
Property Value
Type | Description |
---|---|
System. |
The current value. |
Remarks
This indicates the current state of progress.
If set to 0
, the bar is shown empty across the full range.
If set to Max
MaxValue
Gets or sets the maximum value.
Declaration
public int MaxValue { get; set; }
Property Value
Type | Description |
---|---|
System. |
The maximum value. |
Remarks
This value represents the 100% position. When Current
ProgressText
Gets or sets the progress text.
Declaration
public string ProgressText { get; set; }
Property Value
Type | Description |
---|---|
System. |
The progress text. |
Remarks
If specified, a label will be shown with the given text.