DicomObjects.NET8 Documentation
DicomObjects Namespace / DicomLabel Class / LabelChanged Event



In This Topic
    LabelChanged Event
    In This Topic
    Event fired when the properties of a label are changed.
    Syntax
    'Declaration
     
    
    Public Event LabelChanged As LabelChangedHandler
    'Usage
     
    
    Dim instance As DicomLabel
    Dim handler As LabelChangedHandler
     
    AddHandler instance.LabelChanged, handler
    public event LabelChangedHandler LabelChanged
    public:
    event LabelChangedHandler^ LabelChanged
    Remarks

    Note that this Event is only fired when a complete property changes e.g.

    label.Area = new SKRect(0,0,10,20);

    It is not fired when a property of a property changes - e.g.

    label.Area.Left = 20;
    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