MESCIUS SPREAD for Windows Forms 15.0J
IndexOf メソッド (DefaultStyleCollection)
使用例 

検索するNamedStyleオブジェクト
指定したNamedStyleオブジェクトのインデックスを返します。
構文
'宣言
 
Public Function IndexOf( _
   ByVal style As NamedStyle _
) As Integer
public int IndexOf( 
   NamedStyle style
)

パラメータ

style
検索するNamedStyleオブジェクト

戻り値の型

コレクション内のオブジェクトの0から始まるインデックスを表す Integer。オブジェクトが見つからなかった場合は-1
使用例
次のサンプルコードでは、このメンバを使用して、指定したNamedStyleのインデックスを返しています。
FarPoint.Win.Spread.DefaultStyleCollection dsc = new FarPoint.Win.Spread.DefaultStyleCollection();
foreach(FarPoint.Win.Spread.NamedStyle ns in FarPoint.Win.Spread.DefaultStyleCollection.Styles)
{
listBox1.Items.Add(dsc.IndexOf(ns));
}
Dim dsc As New FarPoint.Win.Spread.DefaultStyleCollection()
Dim ns As FarPoint.Win.Spread.NamedStyle
For Each ns In dsc.Styles
ListBox1.Items.Add(dsc.IndexOf(ns))
Next
参照

DefaultStyleCollection クラス
DefaultStyleCollection メンバ

 

 


© MESCIUS inc. All rights reserved.