Class ProgressEventArgs
Event arguments for notifying read progress.
Inheritance
System.Object
System.EventArgs
ProgressEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.Base.dll
Syntax
public class ProgressEventArgs : EventArgs
Constructors
ProgressEventArgs(Int64, Int64)
Creates new instance of the event arguments.
Declaration
public ProgressEventArgs(long curPos, long fullSize)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | curPos | Current read position. |
System.Int64 | fullSize | Full stream size. |
Properties
FullSize
Full stream size.
Declaration
public long FullSize { get; }
Property Value
Type |
---|
System.Int64 |
Position
Current read position.
Declaration
public long Position { get; }
Property Value
Type |
---|
System.Int64 |