Spread Windows Forms 10.0 Product Documentation
Label Property (Column)
Example 


Gets or sets the header label for this column.
Syntax
'Declaration
 
Public Property Label As String
'Usage
 
Dim instance As Column
Dim value As String
 
instance.Label = value
 
value = instance.Label
public string Label {get; set;}

Property Value

String containing label text
Remarks

Column objects returned by Columns.Default and Column objects in the column or row headers do not have a label.

Example
This example specifies the header text for the column.
FarPoint.Win.Spread.Column col;
col = fpSpread1.ActiveSheet.Columns[0];
col.Label = "Column 1";
Dim col As FarPoint.Win.Spread.Column
col = FpSpread1.ActiveSheet.Columns(0)
col.Label = "Column 1"
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

Column Class
Column Members

 

 


Copyright © GrapeCity, inc. All rights reserved.