プロパティ値
セルがまたがる行の数を示すint
値。既定値は1
です。int
値。既定値は1
です。例外 | 解説 |
---|---|
System.ArgumentOutOfRangeException | 値が1未満です。 |
Cell cell = gcSpreadGrid1.Cells[0, 0];
cell.ColumnSpan = 3;
cell.RowSpan = 3;
cell.Text = "Span";
Dim cell As Cell = gcSpreadGrid1.Cells(0, 0) cell.ColumnSpan = 3 cell.RowSpan = 3 cell.Text = "Span"