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