Spread WPF 18
GrapeCity.Wpf.SpreadSheet Namespace / CellLocation Structure / CellLocation Constructor
A SpreadsheetAreas value indicates the area of the cell.
An integer value indicates the top row index of cell.
An integer value indicates the left column index of cell.


In This Topic
    CellLocation Constructor
    In This Topic
    Initializes a new instance of the GrapeCity.Spreadsheet.Reference class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal area As SpreadsheetAreas, _
       ByVal row As Integer, _
       ByVal column As Integer _
    )
    'Usage
     
    Dim area As SpreadsheetAreas
    Dim row As Integer
    Dim column As Integer
     
    Dim instance As New CellLocation(area, row, column)
    public CellLocation( 
       SpreadsheetAreas area,
       int row,
       int column
    )

    Parameters

    area
    A SpreadsheetAreas value indicates the area of the cell.
    row
    An integer value indicates the top row index of cell.
    column
    An integer value indicates the left column index of cell.
    See Also