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


In This Topic
    ToString Method (BorderProperty)
    In This Topic
    Gets the name of the border property.
    Syntax
    'Declaration
     
    
    Public Overrides Function ToString() As String
    'Usage
     
    
    Dim instance As BorderProperty
    Dim value As String
     
    value = instance.ToString()
    public override string ToString()

    Return Value

    String containing the name of the border property
    Example
    This example returns a BorderProperty as a string to a text box.
    FarPoint.Web.Spread.BorderProperty bord;
    TextBox1.Text=bord.BorderColor.ToString;
    Dim bord As FarPoint.Web.Spread.BorderProperty
    TextBox1.Text=bord.BorderColor.ToString
    See Also