Spread Silverlight Documentation
Label Property (Column)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Column Class : Label Property
Gets or sets the header label for this column.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property Label As System.String
'Usage
 
Dim instance As Column
Dim value As System.String
 
instance.Label = value
 
value = instance.Label
[System.ComponentModel.DefaultValue()]
public System.string Label {get; set;}

Property Value

The header label for this column. The default value is an empty string, which means that no label is set.
Example
This example uses the Label property.
GcSpreadSheet1.ActiveSheet.Columns[0].Label = "Column Label";
//GcSpreadSheet1.ActiveSheet.Columns[0].ResetLabel();
GcSpreadSheet1.ActiveSheet.Columns(0).Label = "Column Label"
'GcSpreadSheet1.ActiveSheet.Columns(0).ResetLabel()
See Also

Reference

Column Class
Column Members