Spread Silverlight Documentation
Label Property (Column)
Example 


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()
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Column Class
Column Members

 

 


Copyright © GrapeCity, inc. All rights reserved.