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



In This Topic
    DrawStartHandler Delegate
    In This Topic
    Delegate used by the DicomObjects.DicomViewer.DrawStart event
    Syntax
    '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)
    public delegate void DrawStartHandler( 
       object Sender,
       PaintEventArgs e,
       DrawStartEventArgs DrawStartArgs
    )
    public delegate void DrawStartHandler( 
       Object^ Sender,
       PaintEventArgs^ e,
       DrawStartEventArgs^ DrawStartArgs
    )

    Parameters

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

    Target Platforms: .NET CLR 4.0 or higher

    See Also