Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / CalculationEngine Class / IsCircularCell(IWorksheet,Int32,Int32) Method
The worksheet contains the cell.
An integer value indicates the row index.
An integer value indicates the column index.


In This Topic
    IsCircularCell(IWorksheet,Int32,Int32) Method
    In This Topic
    Determines whether the specified cell is a circular cell.
    Syntax
    'Declaration
     
    
    Public Function IsCircularCell( _
       ByVal worksheet As IWorksheet, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As CalculationEngine
    Dim worksheet As IWorksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsCircularCell(worksheet, row, column)
    public bool IsCircularCell( 
       IWorksheet worksheet,
       int row,
       int column
    )

    Parameters

    worksheet
    The worksheet contains the cell.
    row
    An integer value indicates the row index.
    column
    An integer value indicates the column index.

    Return Value

    true if the specified cell is a circular cell; otherwise, false.
    See Also