PowerTools SPREAD for ASP.NET 8.0J
Rows プロパティ (ColumnHeader)

列ヘッダの行のRowsオブジェクトを取得します。
構文
'Declaration
 
Public ReadOnly Property Rows As Rows
public Rows Rows {get;}

プロパティ値

この列ヘッダの行を含むRowsオブジェクト
解説
このプロパティは実行時のみ使用できます。
次のサンプルコードは、シートの列ヘッダ内に複数の行を作成し、各行の周囲に異なる境界線を付けます。
FarPoint.Web.Spread.ColumnHeader colhdr;
colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.RowCount = 3;
colhdr.Rows[0].Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Salmon, 2);
colhdr.Rows[1].Border = new FarPoint.Web.Spread.Border(BorderStyle.Groove, Color.Yellow, 2);
colhdr.Rows[2].Border = new FarPoint.Web.Spread.Border(BorderStyle.Inset, Color.YellowGreen, 2); 
Dim colhdr As FarPoint.Web.Spread.ColumnHeader
colhdr = FpSpread1.ActiveSheetView.ColumnHeader
colhdr.RowCount = 3
colhdr.Rows(0).Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Salmon, 2)
colhdr.Rows(1).Border = New FarPoint.Web.Spread.Border(BorderStyle.Groove, Color.Yellow, 2)
colhdr.Rows(2).Border = New FarPoint.Web.Spread.Border(BorderStyle.Inset, Color.YellowGreen, 2) 
参照

ColumnHeader クラス
ColumnHeader メンバ
Rows クラス

開発者の手引き

ヘッダ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.