LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
SeriesReady Event
See Also 
Leadtools.Medical.Workstation.UI Namespace > QueueManager Class : SeriesReady Event




Occurs when a Leadtools.Medical.Workstation.UI.Commands.RetrieveQueueItemCommand execution is completed

Syntax

Visual Basic (Declaration) 
Public Event SeriesReady As EventHandler(Of SeriesInformationEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As QueueManager
Dim handler As EventHandler(Of SeriesInformationEventArgs)
 
AddHandler instance.SeriesReady, handler
C# 
public event EventHandler<SeriesInformationEventArgs> SeriesReady
Managed Extensions for C++ 
public: __event EventHandler<SeriesInformationEventArgs*>* SeriesReady
C++/CLI 
public:
event EventHandler<SeriesInformationEventArgs^>^ SeriesReady

Event Data

The event handler receives an argument of type SeriesInformationEventArgs containing data related to this event. The following SeriesInformationEventArgs properties provide information specific to this event.

PropertyDescription
Description Gets a general description of the Series.
PatientId Gets the Patient ID of the series.
SeriesInstanceUID Gets the Series Instance UID of the series.
StudyInstanceUID Gets the Study Instance UID of the series.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also