Class ProgressBar

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll
API Level:
preview

The ProgressBar is a widget for visually representing the progress status of a given job or task.

C#
Copy
public class ProgressBar : Layout, IAccessibleObject
Inheritance
Implements

Constructors

View Source

ProgressBar(EvasObject)

Creates and initializes a new instance of the ProgressBar class.

Declaration
C#
Copy
public ProgressBar(EvasObject parent)
Parameters
Type Name Description
EvasObject parent

The EvasObject to which the new ProgressBar will be attached as a child.

API Level: preview

Properties

View Source

Color

Sets or gets the general or main color of the given Progressbar.

Declaration
C#
Copy
public override Color Color { get; set; }
Property Value
Type Description
Color
Overrides
API Level: preview
View Source

IsHorizontal

Sets or gets the value whether a given ProgressBar widget is horizontal.

Declaration
C#
Copy
public bool IsHorizontal { get; set; }
Property Value
Type Description
Boolean
API Level: preview
View Source

IsInverted

Sets or gets the value whether a given progress bar widget's displaying values are inverted.

Declaration
C#
Copy
public bool IsInverted { get; set; }
Property Value
Type Description
Boolean
API Level: preview
View Source

IsPulseMode

Sets or gets the value whether a given ProgressBar widget is at the "pulsing mode".

Declaration
C#
Copy
public bool IsPulseMode { get; set; }
Property Value
Type Description
Boolean
Remarks

By default, progress bars display values from low to high value boundaries. There are, though, contexts in which the progress of a given task is unknown. For such cases, one can set the progress bar widget to a "pulsing state", to give the user an idea that some computation is being held, but without the exact progress values. In the default theme, it animates its bar with the contents filling in constantly and back to non-filled, in a loop.

API Level: preview
View Source

SpanSize

Sets or gets the span value of the ProgressBar.

Declaration
C#
Copy
public int SpanSize { get; set; }
Property Value
Type Description
System.Int32
API Level: preview
View Source

UnitFormat

Sets or gets the format string for a given progress bar widget's units label.

Declaration
C#
Copy
public string UnitFormat { get; set; }
Property Value
Type Description
System.String
Remarks

If null is passed on format, it makes the object units area to be hidden completely. If not, it sets the format string for the units label's text. The units label are provided with a floating point value, so the units text displays at the most one floating point value. Note that the units label is optional. Use a format string such as "%1.2f meters" for example.

API Level: preview
View Source

Value

Sets or gets the value of the ProgressBar.

Declaration
C#
Copy
public double Value { get; set; }
Property Value
Type Description
System.Double
Remarks

Use this property to set the progress bar levels. If you pass a value out of the specified range (0.0~1.0), it is interpreted as the closest of the boundary values in the range.

API Level: preview

Methods

View Source

CreateHandle(EvasObject)

Creates a widget handle.

Declaration
C#
Copy
protected override IntPtr CreateHandle(EvasObject parent)
Parameters
Type Name Description
EvasObject parent

Parent EvasObject.

Returns
Type Description
System.IntPtr

Handle IntPtr.

Overrides
API Level: preview
View Source

GetPartValue(String)

Gets the part value of a given part of the Progressbar.

Declaration
C#
Copy
public double GetPartValue(string part)
Parameters
Type Name Description
System.String part

Part of the Progressbar.

Returns
Type Description
System.Double

Value range is from 0.0 to 1.0.

API Level: preview
View Source

PlayPulse()

Starts a given progress bar "pulsing" animation, if its under that mode.

Declaration
C#
Copy
public void PlayPulse()
API Level: preview
View Source

SetPartValue(String, Double)

Sets the part value of a given part of the Progressbar.

Declaration
C#
Copy
public void SetPartValue(string part, double value)
Parameters
Type Name Description
System.String part

Part of the Progressbar.

System.Double value

Value range is from 0.0 to 1.0.

API Level: preview
View Source

StopPluse()

Stops a given progress bar "pulsing" animation, if its under that mode.

Declaration
C#
Copy
[Obsolete("use StopPulse instead")] public void StopPluse()
API Level: preview
View Source

StopPulse()

Stops a given progress bar "pulsing" animation, if its under that mode.

Declaration
C#
Copy
public void StopPulse()
API Level: preview

Events

View Source

ValueChanged

ValueChanged will be triggered when the value of the ProgressBar changes.

Declaration
C#
Copy
public event EventHandler ValueChanged
Event Type
Type Description
EventHandler
API Level: preview

Implements

Extension Methods