MESCIUS SPREAD for Windows Forms 15.0J
Item プロパティ (AlternatingRows)
使用例 

交互行のインデックス(0から始まる)
指定した交互行の新しい交互行を取得します。
構文
'宣言
 
Public ReadOnly Default Property Item( _
   ByVal index As Integer _
) As AlternatingRow
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行おきのスタイル

 

 


© MESCIUS inc. All rights reserved.