SPREAD for WPF 3.0J - GcSpreadGrid
RowSpan プロパティ (Cell)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > Cell クラス : RowSpan プロパティ
セルがまたがる行の数を取得または設定します。
シンタックス
'宣言
 
Public Property RowSpan As Integer
public int RowSpan {get; set;}

プロパティ値

セルがまたがる行の数を示す int 値。既定値はです。
例外
例外解説
値が1未満です。
使用例
このサンプルは、セルを指定し、3行3列のセル結合を設定します。
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"
参照

Cell クラス
Cell メンバ