PowerTools SPREAD for ASP.NET 8.0J
Count プロパティ (NamedStyleCollection)

コレクション内のスタイル(NamedStyleオブジェクト)の数を取得します。
構文
'Declaration
 
Public Overridable ReadOnly Property Count As Integer
public virtual int Count {get;}

プロパティ値

コレクション内のスタイルの数を表すInteger
この例では、コレクション内のスタイル数を返して、このメンバの使い方を示します。
FarPoint.Web.Spread.NamedStyleCollection nsc = new FarPoint.Web.Spread.NamedStyleCollection();
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("StyleData", "DataAreaDefault");
int i;
ns.BackColor = Color.Yellow;
ns.Border = new FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Blue);
nsc.Add(ns);
FpSpread1.NamedStyles.Add(nsc[0]);
FpSpread1.ActiveSheetView.DefaultStyle = nsc[0];
i = nsc.Count;
TextBox1.Text = i.ToString();
Dim nsc As New FarPoint.Web.Spread.NamedStyleCollection
Dim ns As New FarPoint.Web.Spread.NamedStyle("StyleData", "DataAreaDefault")
Dim i As Integer
ns.BackColor = Color.Yellow
ns.Border = New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Blue)
nsc.Add(ns)
FpSpread1.NamedStyles.Add(nsc(0))
FpSpread1.ActiveSheetView.DefaultStyle = nsc(0)
i = nsc.Count
TextBox1.Text = i.ToString()
参照

NamedStyleCollection クラス
NamedStyleCollection メンバ
AddRange メソッド
Add メソッド
Clear メソッド
CopyTo メソッド
Insert メソッド
Remove メソッド
RemoveAt メソッド

 

 


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