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




Occurs when an error occur while loading or creating a 3D volume.

Syntax

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

Event Data

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

PropertyDescription
Error Gets the exception of the error.
Handled Gets or sets whether the user handled the error

Remarks

If the user set the Volume3DLoadingErrorEventArgs.Handled property to true the WorkstationViewer will not display any messages to the user.

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