'Declaration Public Function GetColumnLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
Parameters
- row
- Header row index
- column
- Header column index
Return Value
String containing the text for the specified header cell
'Declaration Public Function GetColumnLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
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))
SheetView Class
SheetView Members
GetRowLabel Method
SetColumnLabel Method