PowerTools SPREAD for Windows Forms 8.0J
IndexOf メソッド (NamedStyleCollection)


検索するスタイル(NamedStyleオブジェクト)
コレクション内の指定したスタイルのインデックスを返します。
構文
'Declaration
 
Public Overridable Function IndexOf( _
   ByVal style As NamedStyle _
) As Integer
'使用法
 
Dim instance As NamedStyleCollection
Dim style As NamedStyle
Dim value As Integer
 
value = instance.IndexOf(style)
public virtual int IndexOf( 
   NamedStyle style
)

パラメータ

style
検索するスタイル(NamedStyleオブジェクト)

戻り値の型

コレクション内のスタイルの0から始まるインデックスを表す Integer
次のサンプルコードでは、このメンバを使用して、コレクション内の名前付きスタイルのインデックスを返しています。
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection();
FarPoint.Win.Spread.NamedStyle ns1 = new FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault");
FarPoint.Win.Spread.NamedStyle ns2 = new FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault");
int i;
ns1.BackColor = Color.LightBlue;
ns2.BackColor = Color.Gray;
nsc.AddRange(new Object[] {ns1, ns2});
fpSpread1.NamedStyles = nsc;
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc[0];
fpSpread1.ActiveSheet.DefaultStyle = nsc[1];
i = nsc.IndexOf(ns2);
label1.Text = "The index of StyleData in the collection is " + i.ToString();
Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection()
Dim ns1 As New FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault")
Dim ns2 As New FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault")
Dim i As Integer
ns1.BackColor = Color.LightBlue
ns2.BackColor = Color.Gray
nsc.AddRange(New Object() {ns1, ns2})
FpSpread1.NamedStyles = nsc
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc(0)
FpSpread1.ActiveSheet.DefaultStyle = nsc(1)
i = nsc.IndexOf(ns2)
Label1.Text = "The index of StyleData in the collection is " & i.ToString()
参照

NamedStyleCollection クラス
NamedStyleCollection メンバ

 

 


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