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

定義済みの境界線プロパティを列挙する列挙子を取得します。
構文
'Declaration
 
Public Shared Function GetEnumerator() As IEnumerator
public static IEnumerator GetEnumerator()

戻り値の型

すべての定義済みのBorderPropertyオブジェクトを列挙するIEnumeratorインタフェース
この例では、IEnumeratorを作成し、GetEnumeratorメソッドを使用してBorderPropertyをテキストボックスに返します。
System.Collections.IEnumerator enmr;
enmr = FarPoint.Web.Spread.BorderProperty.GetEnumerator();
enmr.Reset();
While(enmr.MoveNext())
{
    TextBox1.Text = Convert.ToString(enmr.Current);
}
Dim bord As FarPoint.Web.Spread.BorderProperty
Dim enmr As System.Collections.IEnumerator
enmr = bord.GetEnumerator
enmr.Reset()
While(enmr.MoveNext)
    TextBox1.Text = Convert.ToString(enmr.Current)
End While
参照

BorderProperty クラス
BorderProperty メンバ

 

 


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