Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / RangeReference Structure / RangeReference Constructor / RangeReference Constructor(Int32,Int32,Int32,Int32)
An integer value indicates the absolute top row index.
An integer value indicates the absolute left column index.
An integer value indicates the absolute bottom row index.
An integer value indicates the absolute right column index.


In This Topic
    RangeReference Constructor(Int32,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the RangeReference struct.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    )
    'Usage
     
    
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
     
    Dim instance As New RangeReference(row, column, row2, column2)
    public RangeReference( 
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

    row
    An integer value indicates the absolute top row index.
    column
    An integer value indicates the absolute left column index.
    row2
    An integer value indicates the absolute bottom row index.
    column2
    An integer value indicates the absolute right column index.
    See Also