DicomObjects.NET.8.48 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
    public event LabelChangedHandler LabelChanged
    Remarks

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

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

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

    label.Area.Left = 20;
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also