| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Position As Long | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As PopProgressEventArgs Dim value As Long value = instance.Position | |
| C# | |
|---|---|
public long Position {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property long get_Position(); | |
Property Value
A long representing the current position within the stream.This value represents the position within the Stream of the message being retrieved at the time the Object.Progress event was raised. This is useful for displaying progress as Object.Position divided by Object.Length gives the percentage complete.
Object.Position will equal Object.Length when all data has been transferred.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code