Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / UIManager Class / ShapeChanged Event


In This Topic
    ShapeChanged Event
    In This Topic
    Occurs when the shape is changed.
    Syntax
    'Declaration
     
    
    Public Event ShapeChanged As EventHandler(Of ShapeEventArgs)
    'Usage
     
    
    Dim instance As UIManager
    Dim handler As EventHandler(Of ShapeEventArgs)
     
    AddHandler instance.ShapeChanged, handler
    public event EventHandler<ShapeEventArgs> ShapeChanged
    Event Data

    The event handler receives an argument of type ShapeEventArgs containing data related to this event. The following ShapeEventArgs properties provide information specific to this event.

    PropertyDescription
    Indicates whether to continue the default process.  
    Gets the shape to process.  
    Gets all shapes to process.  
    Gets the reason that trigger the event.  
    See Also