MESCIUS SPREAD for ASP.NET 10.0J
Count プロパティ (Rows)

コレクション内の行数を取得または設定します。
構文
'Declaration
 
Public Property Count As Integer
public int Count {get; set;}

プロパティ値

コレクション内の行数を表すInteger
この例では、シートの行数を4に設定し、Itemプロパティを使用していくつかの行の背景色を変更し、DefaultとParentプロパティをリストボックスに返します。
FpSpread1.Rows.Count = 4;
FpSpread1.Rows[0].BackColor = Color.Yellow;
FpSpread1.Rows[1, 2].BackColor = Color.YellowGreen;
ListBox1.Items.Add(Convert.ToString(FpSpread1.Rows.Default));
ListBox1.Items.Add(Convert.ToString(FpSpread1.Rows.Parent));
FpSpread1.Rows.Count = 4
FpSpread1.Rows.Item(0).BackColor = Color.Yellow
FpSpread1.Rows.Item(1, 2).BackColor = Color.YellowGreen
ListBox1.Items.Add(Convert.ToString(FpSpread1.Rows.Default))
ListBox1.Items.Add(Convert.ToString(FpSpread1.Rows.Parent))
参照

Rows クラス
Rows メンバ
Count プロパティ

 

 


© MESCIUS inc. All rights reserved.