PowerTools SPREAD for ASP.NET 8.0J
IndexOf メソッド (DefaultStyleCollection)

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

パラメータ

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

戻り値の型

コレクション内のオブジェクトのインデックス。オブジェクトが見つからなかった場合は-1
解説
このメソッドは、スタイルコレクション内のスタイル(NamedStyleオブジェクト)のインデックスを返します。
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle();
int i;
int i;    
foreach(FarPoint.Web.Spread.NamedStyle ns in dsc)
{
    i = dsc.IndexOf(ns);
    dsc[i].BackColor = Color.Yellow;
}
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim ns As New FarPoint.Web.Spread.NamedStyle
Dim i As Integer
For Each ns In dsc.Styles
    i = dsc.IndexOf(ns)
    dsc.Item(i).BackColor = Color.Yellow
Next
参照

DefaultStyleCollection クラス
DefaultStyleCollection メンバ

 

 


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