GrapeCity.Xaml.SpreadSheet.Data
Label Property (Column)
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Column Class : Label Property
Gets or sets the header label for this column.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property Label As String
'Usage
 
Dim instance As Column
Dim value As String
 
instance.Label = value
 
value = instance.Label
[DefaultValue()]
public 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 sets 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