DicomObjects.NET.V8
DicomObjects.Delegates Namespace / PositionChangedHandler Delegate
The object causing the change to happen
The Image which has changed



In This Topic
    PositionChangedHandler Delegate
    In This Topic
    Syntax
    'Declaration
     
    Public Delegate Sub PositionChangedHandler( _
       ByVal Sender As Object, _
       ByVal Image As DicomImage _
    ) 
    'Usage
     
    Dim instance As New PositionChangedHandler(AddressOf HandlerMethod)
    public delegate void PositionChangedHandler( 
       object Sender,
       DicomImage Image
    )
    public delegate void PositionChangedHandler( 
       Object^ Sender,
       DicomImage^ Image
    )

    Parameters

    Sender
    The object causing the change to happen
    Image
    The Image which has changed
    Remarks
    In practice, currently, Sender and Image are the same object.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also