Class ProgressEventArgs
Provides data for the Progress event.
Inheritance
System.Object
ProgressEventArgs
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: FastReport
Assembly: FastReport.OpenSource.dll
Syntax
public class ProgressEventArgs
Constructors
ProgressEventArgs(String, Int32, Int32)
Initializes a new instance of the ProgressEventArgs class using the specified message, page number and total number of pages.
Declaration
public ProgressEventArgs(string message, int progress, int total)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The progress message. |
System.Int32 | progress | Current page number. |
System.Int32 | total | Number of total pages. |
Properties
Message
Gets a progress message.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |
Progress
Gets the current page number.
Declaration
public int Progress { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Total
Gets the number of total pages.
Declaration
public int Total { get; }
Property Value
Type | Description |
---|---|
System.Int32 |