Spread Silverlight Documentation
SetTag(Int32,Int32,SheetArea,Object) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > SetTag Method : SetTag(Int32,Int32,SheetArea,Object) Method
The row index (set to -1 for all rows).
The column index (set to -1 for all columns).
The sheet area.
The tag value for the specified cell, column, row, or sheet.
Sets the application-defined tag value for the specified cell, column, row, or entire sheet for the specified sheet area.
Syntax
'Declaration
 
Public Overloads Sub SetTag( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea, _
   ByVal value As System.Object _
) 
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim sheetArea As SheetArea
Dim value As System.Object
 
instance.SetTag(row, column, sheetArea, value)
public void SetTag( 
   System.int row,
   System.int column,
   SheetArea sheetArea,
   System.object value
)

Parameters

row
The row index (set to -1 for all rows).
column
The column index (set to -1 for all columns).
sheetArea
The sheet area.
value
The tag value for the specified cell, column, row, or sheet.
Example
This example uses the SetTag method.
gcSpreadSheet1.Sheets[0].SetTag(0, 0, "test");
//gcSpreadSheet1.Sheets[0].SetTag(0, 0, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "test");
gcSpreadSheet1.Sheets[0].SetText(1, 1, "testing");
//gcSpreadSheet1.Sheets[0].SetText(1, 1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "Testing");
gcSpreadSheet1.Sheets[0].SetValue(2, 2, "ABC");
//gcSpreadSheet1.Sheets[0].SetValue(2, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "ABC");
//gcSpreadSheet1.Sheets[0].SetValue(2, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "ABC", true);
GcSpreadSheet1.Sheets(0).SetTag(0, 0, "test")
'GcSpreadSheet1.Sheets(0).SetTag(0, 0, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "test")
GcSpreadSheet1.Sheets(0).SetText(1, 1, "testing")
'GcSpreadSheet1.Sheets(0).SetText(1, 1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "Testing")
GcSpreadSheet1.Sheets(0).SetValue(2, 2, "ABC")
'GcSpreadSheet1.Sheets(0).SetValue(2, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "ABC")
'GcSpreadSheet1.Sheets(0).SetValue(2, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, "ABC", True)
See Also

Reference

Worksheet Class
Worksheet Members
Overload List