'DeclarationPublic Event DecompressionCompleted As EventHandler(Of DecompressionCompletedEventArgs)
'UsageDim instance As DicomGlobal Dim handler As EventHandler(Of DecompressionCompletedEventArgs) AddHandler instance.DecompressionCompleted, handler
public event EventHandler<DecompressionCompletedEventArgs> DecompressionCompleted
public: event EventHandler<DecompressionCompletedEventArgs^>^ DecompressionCompleted
Event Data
The event handler receives an argument of type DecompressionCompletedEventArgs containing data related to this event. The following DecompressionCompletedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| BytesIn | Compressed input size for this frame, in bytes |
| BytesOut | Decoded output bytes size after decompression |
| DecompressionTime | Time taken to decompress |
| Frame | Frame index that was decompressed |
| OutputHeight | Height in pixels of the decoded output |
| OutputWidth | Width in pixels of the decoded output |
| ResolutionLevel | Resolution Level used for Decompression |
| TransferSyntaxUID | Source Transfer syntax of the compressed data |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also