FarPoint.Web.Spread 名前空間 > Column クラス : Label プロパティ |
Columns オブジェクトの Default プロパティが返す Column オブジェクト、および列ヘッダまたは行ヘッダ内の Column オブジェクトには、ラベルはありません。
これは自動テキストと同じではありません。列の行に表示される自動テキストの詳細については、ColumnHeader クラスの AutoText と AutoTextIndex を参照してください。
FpSpread1.ActiveSheetView.ColumnCount = 10;
FpSpread1.ActiveSheetView.PageSize = 20;
FpSpread1.ActiveSheetView.RowCount = 20;
FarPoint.Web.Spread.Column mycol;
mycol = FpSpread1.ActiveSheetView.Columns[1];
mycol.Label = "GrapeCity";
TextBox1.Text = mycol.Label;
FpSpread1.ActiveSheetView.ColumnCount = 10 FpSpread1.ActiveSheetView.PageSize = 20 FpSpread1.ActiveSheetView.RowCount = 20 Dim mycol As FarPoint.Web.Spread.Column mycol = FpSpread1.ActiveSheetView.Columns(1) mycol.Label = "GrapeCity" TextBox1.Text = mycol.Label