| Visual Basic (Declaration) | |
|---|---|
Public Event FullSeriesImagesStreamed As EventHandler(Of FullSeriesImagesStreamedEventArgs) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MedicalWebViewerLoader Dim handler As EventHandler(Of FullSeriesImagesStreamedEventArgs) AddHandler instance.FullSeriesImagesStreamed, handler | |
| C# | |
|---|---|
public event EventHandler<FullSeriesImagesStreamedEventArgs> FullSeriesImagesStreamed | |
| C++/CLI | |
|---|---|
public: event EventHandler<FullSeriesImagesStreamedEventArgs^>^ FullSeriesImagesStreamed | |
The event handler receives an argument of type FullSeriesImagesStreamedEventArgs containing data related to this event. The following FullSeriesImagesStreamedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cells | Gets the Leadtools.MedicalViewer.MedicalViewerMultiCell cotnrols which the series images are displayed in. |
| SeriesInstanceUID | Gets the Series Instance UID of the loaded series. |
Refer to the Medical Web Viewer demo in the WorkstationWebViewer project.
Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code