Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / SparklineStorage Class / Item Property
The row must be greater than or equal to 0 and less than RowCount.
The column must be greater than or equal to 0 and less than ColumnCount.


In This Topic
    Item Property (SparklineStorage)
    In This Topic
    Gets or sets a data item for the specified cell in the SparseMatrix.
    Syntax
    'Declaration
     
    
    Public Default Property Item( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Sparkline
    'Usage
     
    
    Dim instance As SparklineStorage
    Dim row As Integer
    Dim column As Integer
    Dim value As Sparkline
     
    instance.Item(row, column) = value
     
    value = instance.Item(row, column)
    public Sparkline this[ 
       int row,
       int column
    ]; {get; set;}

    Parameters

    row
    The row must be greater than or equal to 0 and less than RowCount.
    column
    The column must be greater than or equal to 0 and less than ColumnCount.

    Property Value

    The value at the specified row and column.
    See Also