Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ExpressionView Class / Item Property
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.


In This Topic
    Item Property (ExpressionView)
    In This Topic
    Gets the ExpressionViewCell represents the specified cell.
    Syntax
    'Declaration
     
    
    Public ReadOnly Default Property Item( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As ExpressionViewCell
    'Usage
     
    
    Dim instance As ExpressionView
    Dim row As Integer
    Dim column As Integer
    Dim value As ExpressionViewCell
     
    value = instance.Item(row, column)
    public ExpressionViewCell this[ 
       int row,
       int column
    ]; {get;}

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.

    Property Value

    An ExpressionViewCell instance represents the cell.
    See Also