Class ProgressEventArgs
Event arguments for notifying read progress.
Inheritance
System.Object
ProgressEventArgs
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.NET.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 |