DicomObjects.NET8 Documentation
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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also