GrapeCity.Windows.SpreadGrid 名前空間 > Cell クラス : RowSpan プロパティ |
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"