Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetTag Method / GetTag(Int32,Int32) Method
The row index.
The column index.


In This Topic
    GetTag(Int32,Int32) Method
    In This Topic
    Gets the application-defined tag value for the specified cell, column, row, or entire sheet in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Function GetTag( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetTag(row, column)
    public object GetTag( 
       int row,
       int column
    )

    Parameters

    row
    The row index.
    column
    The column index.

    Return Value

    Returns the tag for the specified cell.
    See Also