DicomObjects.NET.V8
DicomObjects.Delegates Namespace / DrawStartHandler Delegate
Control raising the event
Standard system PaintEventArgs parameter
Additional DicomObjects specific argument



DrawStartHandler Delegate
Delegate used by the DicomObjects.DicomViewer.DrawStart event
Syntax
public delegate void DrawStartHandler( 
   object Sender,
   PaintEventArgs e,
   DrawStartEventArgs DrawStartArgs
)
public delegate void DrawStartHandler( 
   Object^ Sender,
   PaintEventArgs^ e,
   DrawStartEventArgs^ DrawStartArgs
)
'Declaration
 
Public Delegate Sub DrawStartHandler( _
   ByVal Sender As Object, _
   ByVal e As PaintEventArgs, _
   ByVal DrawStartArgs As DrawStartEventArgs _
) 
 
'Usage
 
Dim instance As New DrawStartHandler(AddressOf HandlerMethod)

Parameters

Sender
Control raising the event
e
Standard system PaintEventArgs parameter
DrawStartArgs
Additional DicomObjects specific argument
Requirements

Target Platforms: .NET CLR 3.5 or higher

See Also