Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Reference Structure / Reference Constructor / Reference Constructor(Int32,Int32,Int32,Int32)
An integer value indicates the top row index of range reference.
An integer value indicates the left column index of range reference.
An integer value indicates the bottom row index of range reference.
An integer value indicates the right column index of range reference.


In This Topic
    Reference Constructor(Int32,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the Reference class.
    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 Reference(row, column, row2, column2)
    public Reference( 
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

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