menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ProgressEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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 double representing the elapsed time in milliseconds.

    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 string that is always Progressing.

    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 double representing the progress percentage, from 0 to 100.

    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 double representing the increment value.

    Remarks

    This property defines how much the progress advances in each step.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved