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




Occurs when an error occurs when loading a series.

Syntax

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

Event Data

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

PropertyDescription
Error Gets the error System.Exception.
LoadedSeries (Inherited from Leadtools.Medical.Workstation.UI.LoadSeriesEventArgs)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