Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / Expand Event


In This Topic
    Expand Event
    In This Topic
    Occurs when a row is expanded or collapsed.
    Syntax
    'Declaration
     
    
    Public Event Expand As ExpandEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As ExpandEventHandler
     
    AddHandler instance.Expand, handler
    public event ExpandEventHandler Expand
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets whether the row is going to be expanded.  
    Gets the row to expand or collapse.  
    Gets the view that contains the row to be expanded or collapsed.  
    See Also