Spread for ASP.NET 11 Product Documentation
GetColumnLabel Method
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetColumnLabel Method
Gets the text in the column header cell at the specified row and column.
Overload List
OverloadDescription
Gets the text in the column header cell at the specified row and column.  
Example
This example creates a SheetView object and places custom text in the second column header. It returns the text from that header to a list box using the Sheetview object.
FarPoint.Web.Spread.Columnmycol;
FarPoint.Web.Spread.SheetViewsv;
sv=FpSpread1.ActiveSheetView;
mycol=sv.Columns[1];
mycol.Label="FarPoint";
ListBox1.Items.Add(sv.GetColumnLabel(0,1));
DimmycolAsFarPoint.Web.Spread.Column
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
mycol=sv.Columns(1)
mycol.Label="FarPoint"
ListBox1.Items.Add(sv.GetColumnLabel(0,1))
See Also

Reference

SheetView Class
SheetView Members
GetRowLabel Method
SetColumnLabel Method

User-Task Documentation

Customizing Header Label Text