'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.
Property | Description |
---|---|
Column | Gets the first column of the cell range. |
Column2 | Gets the last column of the cell range. |
Included | Gets a boolean indicating whether the circular cell(s) is detected. |
Row | Gets the first row of the cell range. |
Row2 | Gets the last row of the cell range. |
SheetView | Gets the sheetview contains the cell range. |
Worksheet | Gets the worksheet contains the cell range. |
Remarks
This event reflect the internal processing of calculation engine when it process circular cells.
See Also