Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / CellReference Structure / CellReference Constructor / CellReference Constructor(Int32,Int32)
An integer indicates the index of the row.
An integer indicates the index of the column.


In This Topic
    CellReference Constructor(Int32,Int32)
    In This Topic
    Initializes a new instance of the CellReference struct which represents an absolute cell reference.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal column As Integer _
    )
    'Usage
     
    
    Dim row As Integer
    Dim column As Integer
     
    Dim instance As New CellReference(row, column)
    public CellReference( 
       int row,
       int column
    )

    Parameters

    row
    An integer indicates the index of the row.
    column
    An integer indicates the index of the column.
    See Also