SetTag Method
SetTag(int, int, object)
Sets the application-defined tag value for the specified cell, column, row, or entire sheet.
Declaration
public void SetTag(int row, int column, object value)
Public Sub SetTag(row As Integer, column As Integer, value As Object)
Parameters
Type |
Name |
Description |
int |
row |
Row index (Set to -1 for all rows)
|
int |
column |
Column index (Set to -1 for all columns)
|
object |
value |
Tag value for the specified cell, column, row, or sheet
|