Raised when loading, saving or image processing reports progress.
Visual Basic |
---|
Public Event Progress( _ ByVal ImageID As Long, _ ByVal OperationID As Long, _ ByVal BytesProcessed As Long, _ ByVal TotalBytes As Long, _ ByVal PctDone As Long, _ ByVal bDone As Boolean, _ ByVal bAsync As Boolean, _ ByVal Error As Long _ ) |
- ImageID
- The image buffer that is being processed.
- OperationID
- The operation method being performed. See the enumIPEffect enumeration for possible processing actions.
- BytesProcessed
- The number of bytes have been processed.
- TotalBytes
- The total number of bytes that will be processed.
- PctDone
- The completion percentage of the current operation.
- bDone
- A flag denoting if the operation is complete.
- bAsync
- A flag denoting if the operation was an asynchronous operation.
- Error
- The current result for the operation. This will be a IX_Result value.