GrapeCity SPREAD for WPF 2.0J
ColumnSpan プロパティ (Cell)

セルがまたがる列の数を取得または設定します。
構文
'Declaration
 
Public Property ColumnSpan As Integer
public int ColumnSpan {get; set;}

プロパティ値

セルがまたがる列の数を示す int 値。既定値はです。
例外
例外説明
System.ArgumentOutOfRangeException値が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 メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.