| 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 | |
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.
| Property | Description |
|---|---|
| LoadedSeries | 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