DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomLabel Class / LabelChanged Event






    LabelChanged Event
    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
    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