Spread ASP.NET 6.0 Product Documentation
Parse Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > BorderProperty Class : Parse Method


name
Name of the BorderProperty object to return

Glossary Item Box

Gets the border property with the specified name, or null if no border property has the specified name.

Syntax

Visual Basic (Declaration) 
Public Shared Function Parse( _
   ByVal name As String _
) As BorderProperty
Visual Basic (Usage)Copy Code
Dim name As String
Dim value As BorderProperty
 
value = BorderProperty.Parse(name)
C# 
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.
C#Copy Code
FarPoint.Web.Spread.BorderPropertyprop;
prop=FarPoint.Web.Spread.BorderProperty.Parse("BorderColor");
Visual BasicCopy Code
DimpropAsFarPoint.Web.Spread.BorderProperty
prop=FarPoint.Web.Spread.BorderProperty.Parse("BorderColor")

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.