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


In This Topic
    GetTag(Int32,Int32,SheetArea) 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, _
       ByVal sheetArea As SheetArea _
    ) As Object
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim sheetArea As SheetArea
    Dim value As Object
     
    value = instance.GetTag(row, column, sheetArea)
    public object GetTag( 
       int row,
       int column,
       SheetArea sheetArea
    )

    Parameters

    row
    The row index.
    column
    The column index.
    sheetArea
    The sheet area.

    Return Value

    Returns the tag for the specified cell.
    See Also