Spread Silverlight Documentation
Tag Property (Cell)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : Tag Property
Gets or sets an application-defined tag value for a cell.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property Tag As System.Object
'Usage
 
Dim instance As Cell
Dim value As System.Object
 
instance.Tag = value
 
value = instance.Tag
[System.ComponentModel.DefaultValue()]
public System.object Tag {get; set;}

Property Value

An application-defined tag value for a cell. The default value is null.
Example
This example sets the Tag property.
gcSpreadSheet1.ActiveSheet.Cells[1, 1].Tag = "test";
gcSpreadSheet1.ActiveSheet.Cells[1, 1].TabStop = false;
gcSpreadSheet1.ActiveSheet.Cells[1, 1].Text = "Cell with tag";
gcSpreadSheet1.ActiveSheet.Cells[1, 1].ShrinkToFit = true;
//gcSpreadSheet1.ActiveSheet.Cells[1, 1].ResetTabStop();
//gcSpreadSheet1.ActiveSheet.Cells[1, 1].ResetShrinkToFit();
GcSpreadSheet1.ActiveSheet.Cells(1, 1).Tag = "test"
GcSpreadSheet1.ActiveSheet.Cells(1, 1).TabStop = False
GcSpreadSheet1.ActiveSheet.Cells(1, 1).Text = "Cell with tag"
GcSpreadSheet1.ActiveSheet.Cells(1, 1).ShrinkToFit = True
'GcSpreadSheet1.ActiveSheet.Cells(1, 1).ResetTabStop()
'GcSpreadSheet1.ActiveSheet.Cells(1, 1).ResetShrinkToFit()
See Also

Reference

Cell Class
Cell Members