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




Occurs when loading a series is canceled.

Syntax

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

Event Data

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

PropertyDescription
LoadedSeries Gets the series information.

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