LEADTOOLS Medical (Leadtools.Dicom.Web assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
FullSeriesImagesStreamed Event
See Also 
Leadtools.Dicom.Web Namespace > MedicalWebViewerLoader Class : FullSeriesImagesStreamed Event



Occurs when a all the images in a series are streamed from the WCF service.

Syntax

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

Event Data

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.

PropertyDescription
Cells Gets the Leadtools.MedicalViewer.MedicalViewerMultiCell cotnrols which the series images are displayed in.
SeriesInstanceUID Gets the Series Instance UID of the loaded series.

Example

Refer to the Medical Web Viewer demo in the WorkstationWebViewer project.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also