PowerTools SPREAD for Windows Forms 8.0J
Item プロパティ (AlternatingRows)


交互行のインデックス(0から始まる)
指定した交互行の新しい交互行を取得します。
構文
'Declaration
 
Public ReadOnly Default Property Item( _
   ByVal index As Integer _
) As AlternatingRow
'使用法
 
Dim instance As AlternatingRows
Dim index As Integer
Dim value As AlternatingRow
 
value = instance.Item(index)
public AlternatingRow this[ 
   int index
]; {get;}

パラメータ

index
交互行のインデックス(0から始まる)

プロパティ値

AlternatingRowオブジェクト
例外
例外説明
System.IndexOutOfRangeException指定された交互行のインデックスが0未満か、交互行の数以上です。
解説
交互行を作成するには、AlternatingRows.Countプロパティを設定して交互行パターンの数を指定してから、各パターンのプロパティを設定します。
次のサンプルコードは、指定した交互行の背景色を変更します。
ColorDialog cd = new ColorDialog();

if (cd.ShowDialog() == DialogResult.OK)

{

fpSpread1.ActiveSheet.AlternatingRows[0].BackColor = cd.Color;

}
Dim cd As New ColorDialog()

If cd.ShowDialog = DialogResult.OK Then

FpSpread1.ActiveSheet.AlternatingRows.Item(0).BackColor = cd.Color

End If
参照

AlternatingRows クラス
AlternatingRows メンバ

開発者ガイド

1行おきのスタイル

 

 


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