alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class ProgressEventArgs

    Provides event arguments for the Progressing event of a ProgressButton.

    Inheritance
    object
    ProgressEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.SplitButtons
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ProgressEventArgs
    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
    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
    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
    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
    double

    A double representing the increment value.

    Remarks

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

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