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




Occurs when a series information need to be loaded because of a drag/drop action.

Syntax

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

Event Data

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

PropertyDescription
Series Gets the series information for the dropped series.
SeriesLoader Gets or sets the Leadtools.Medical.Workstation.Loader.MedicalViewerLoaderBase which will handle loading the series.

Remarks

The user should set the SeriesDropLoaderRequestedEventArgs.SeriesLoader inorder to load 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