Class ProgressEventArgs
Provides event arguments for the Progressing
event of a ProgressButton.
Inheritance
System.Object
ProgressEventArgs
Namespace: Syncfusion.Blazor.SplitButtons
Assembly: Syncfusion.Blazor.dll
Syntax
public class ProgressEventArgs : Object
Remarks
This class is used by the ProgressButton component to report progress updates.
Constructors
ProgressEventArgs()
Declaration
public ProgressEventArgs()
Properties
CurrentDuration
Gets the elapsed time since the progress began.
Declaration
public double CurrentDuration { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A |
Remarks
This property tracks the duration of the ongoing progress.
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | A |
Remarks
This property identifies the event that was triggered.
Percent
Gets the current progress as a percentage.
Declaration
public double Percent { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A |
Remarks
This property indicates the completion status of the task.
Step
Gets the progress increment value for each step.
Declaration
public double Step { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A |
Remarks
This property defines how much the progress advances in each step.