| 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 | |
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.
| Property | Description |
|---|---|
| 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. |
The user should set the SeriesDropLoaderRequestedEventArgs.SeriesLoader inorder to load the series.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code