Skip to the content.

PromptPlus API:UpdateProgressBar

Build Publish License NuGet Downloads

Back to List Api

UpdateProgressBar<T>

Namespace: PPlus.Controls

Represents the commands to update values of Progress Bar

public class UpdateProgressBar<T> : System.IDisposable

Type Parameters

T
typeof instance result

Inheritance ObjectUpdateProgressBar<T>
Implements IDisposable

Properties

Context

Get/Set instance result value for general purpose

public T Context { get; set; }

Property Value

T

Description

Current Description

public string Description { get; private set; }

Property Value

String

Finish

Get/Set Finish Progress Bar

public bool Finish { get; set; }

Property Value

Boolean

Maxvalue

Maximum value of Progress Bar

public double Maxvalue { get; private set; }

Property Value

Double

Minvalue

Minimal value of Progress Bar

public double Minvalue { get; private set; }

Property Value

Double

Value

Current value of Progress Bar

public double Value { get; private set; }

Property Value

Double

Methods

ChangeDescription(String)

Change curent Description

public void ChangeDescription(string value)

Parameters

value String
new description

Dispose()

Dispose

public void Dispose()

Dispose(Boolean)

Dispose

protected internal void Dispose(bool disposing)

Parameters

disposing Boolean
if disposing

Update(Double)

Update current value

public void Update(double value)

Parameters

value Double
new current value


Back to List Api