DicomObjects.NET.8.48 Documentation
DicomObjects.Delegates Namespace / DrawExceptionHandler Delegate
Sender as object
event arguments






In This Topic
    DrawExceptionHandler Delegate
    In This Topic
    Syntax
    'Declaration
     
    
    Public Delegate Sub DrawExceptionHandler( _
       ByVal Sender As System.Object, _
       ByVal e As DrawExceptionArgs _
    ) 
    'Usage
     
    
    Dim instance As New DrawExceptionHandler(AddressOf HandlerMethod)
    public delegate void DrawExceptionHandler( 
       System.object Sender,
       DrawExceptionArgs e
    )
    public delegate DrawExceptionHandler( 
        Sender: System.TObject;
        e: DrawExceptionArgs
    );
    public delegate DrawExceptionHandler( 
       Sender : System.Object,
       e : DrawExceptionArgs
    )
    public: __gc __delegate void DrawExceptionHandler( 
       System.Object* Sender,
       DrawExceptionArgs* e
    )
    public delegate void DrawExceptionHandler( 
       System.Object^ Sender,
       DrawExceptionArgs^ e
    )

    Parameters

    Sender
    Sender as object
    e
    event arguments
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also