DicomObjects.NET8 Documentation
DicomObjects.Delegates Namespace / LabelChangedHandler Delegate
Standard event Sender argument
The label which has changed



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

    Parameters

    Sender
    Standard event Sender argument
    label
    The label which has changed
    Remarks
    If the Area property changes, then the rectangle passed as a parameter is the union of the old and new Areas.
    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