Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / BorderProperty Class / GetEnumerator Method
Example


In This Topic
    GetEnumerator Method (BorderProperty)
    In This Topic
    Gets an enumerator for enumerating through the defined border properties.
    Syntax
    'Declaration
     
    
    Public Shared Function GetEnumerator() As IEnumerator
    'Usage
     
    
    Dim value As IEnumerator
     
    value = BorderProperty.GetEnumerator()
    public static IEnumerator GetEnumerator()

    Return Value

    IEnumerator interface for enumerating through all the defined BorderProperty objects
    Example
    This example creates an IEnumerator and uses the GetEnumerator method to return a BorderProperty to a text box.
    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
    See Also