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

コレクション内のNamedStyleオブジェクトを列挙するIEnumeratorオブジェクトを 取得します。
構文
'Declaration
 
Public Function GetEnumerator() As IEnumerator
public IEnumerator GetEnumerator()

戻り値の型

コレクション内のNamedStyleオブジェクトを列挙するIEnumeratorオブジェクト
解説
このメソッドは、コレクション内のNamedStyleオブジェクトを列挙するオブジェクトを返します。
次のサンプルコードは、列挙子を取得してメッセージを表示します。
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
Dim msg As String = dsc.GetEnumerator.MoveNext.ToString();
Response.Write("alert('" + msg + "')");
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim msg As String = dsc.GetEnumerator.MoveNext.ToString()
Response.Write("alert('" & msg & "')")
参照

DefaultStyleCollection クラス
DefaultStyleCollection メンバ

 

 


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