Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / BorderProperty Class / Parse Method
Name of the BorderProperty object to return
Example


In This Topic
    Parse Method (BorderProperty)
    In This Topic
    Gets the border property with the specified name, or null if no border property has the specified name.
    Syntax
    'Declaration
     
    
    Public Shared Function Parse( _
       ByVal name As String _
    ) As BorderProperty
    'Usage
     
    
    Dim name As String
    Dim value As BorderProperty
     
    value = BorderProperty.Parse(name)
    public static BorderProperty Parse( 
       string name
    )

    Parameters

    name
    Name of the BorderProperty object to return

    Return Value

    BorderProperty object with the specified name or null if no BorderProperty object has the specified name
    Example
    This example parses the BorderColor property.
    FarPoint.Web.Spread.BorderProperty prop;
    prop=FarPoint.Web.Spread.BorderProperty.Parse("BorderColor");
    Dim prop As FarPoint.Web.Spread.BorderProperty
    prop=FarPoint.Web.Spread.BorderProperty.Parse("BorderColor")
    See Also