この例では、SheetViewオブジェクトを作成し、2番目の列ヘッダにカスタムテキストを設定します。Sheetviewオブジェクトを使用し、そのヘッダからのテキストをリストボックスに返します。
FarPoint.Web.Spread.Columnmy col;
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
mycol = sv.Columns[1];
mycol.Label = "FarPoint";
ListBox1.Items.Add(sv.GetColumnLabel(0, 1));
Dim mycol As FarPoint.Web.Spread.Column
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
mycol=sv.Columns(1)
mycol.Label = "FarPoint"
ListBox1.Items.Add(sv.GetColumnLabel(0, 1))