FarPoint.Web.Spread 名前空間 > Cell クラス : RowSpan プロパティ |
このセルがセル範囲を表す場合、この範囲の左上隅セルの連結範囲が返されるか設定されます。
FpSpread1.Sheets[0].ColumnCount = 7;
FpSpread1.Sheets[0].RowCount = 50;
FarPoint.Web.Spread.Cell mycell = null;
mycell=FpSpread1.Cells[0, 0];
mycell.ColumnSpan = 4;
mycell.RowSpan = 4;
FpSpread1.Sheets(0).ColumnCount = 7 FpSpread1.Sheets(0).RowCount = 50 Dim mycell As FarPoint.Web.Spread.Cell mycell = FpSpread1.Cells(0, 0) mycell.ColumnSpan = 4 mycell.RowSpan = 4