Class ProgressBarPropertiesBase
Inheritance
System.Object
ProgressBarPropertiesBase
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class ProgressBarPropertiesBase : PropertiesBase
Constructors
ProgressBarPropertiesBase()
Declaration
public ProgressBarPropertiesBase()
Properties
Enabled
Specifies whether the control is enabled or disabled.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnablePersistence
Saves current model value to browser cookies for state maintainance. While refreshing the page it retains the model value and applies from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IncrementStep
Specifies the value to be added in each step of increment.
Declaration
[JsonProperty("incrementStep")]
public int IncrementStep { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The step value. |
MaximumValue
specifies the maximum value.
Declaration
[JsonProperty("maxValue")]
public int MaximumValue { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The maximum. |
MinimumValue
specifies the minimum value.
Declaration
[JsonProperty("minValue")]
public int MinimumValue { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The minimum. |
Percentage
Specifies the initial value in percentage.
Declaration
[JsonProperty("percentage")]
public int Percentage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The percentage. |
Text
Applies custom text to notify it's current actions.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |
Value
Specifies the initial value.
Declaration
[JsonProperty("value")]
public int Value { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The value. |