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


In This Topic
    CircularCellChanged Event
    In This Topic
    Occurs when circular cell(s) is changed.
    Syntax
    'Declaration
     
    
    Public Event CircularCellChanged As CircularCellChangedEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As CircularCellChangedEventHandler
     
    AddHandler instance.CircularCellChanged, handler
    public event CircularCellChangedEventHandler CircularCellChanged
    Event Data

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

    PropertyDescription
    Gets the first column of the cell range.  
    Gets the last column of the cell range.  
    Gets a boolean indicating whether the circular cell(s) is detected.  
    Gets the first row of the cell range.  
    Gets the last row of the cell range.  
    Gets the sheetview contains the cell range.  
    Gets the worksheet contains the cell range.  
    Remarks
    This event reflect the internal processing of calculation engine when it process circular cells.
    See Also