Spread for ASP.NET 10 Product Documentation
TryParse Method (CellRange)
Example 


String to be parsed
Cell range represented by the string. If the return value is false then result is set to null.
Converts a string to a cell range.
Syntax
'Declaration
 
Public Shared Function TryParse( _
   ByVal s As String, _
   ByRef result As CellRange _
) As Boolean
'Usage
 
Dim s As String
Dim result As CellRange
Dim value As Boolean
 
value = CellRange.TryParse(s, result)
public static bool TryParse( 
   string s,
   out CellRange result
)

Parameters

s
String to be parsed
result
Cell range represented by the string. If the return value is false then result is set to null.
Remarks
The text passed to the TryParse method must contain the cell name(s) as a column name (as one or more letters) following by the row number (as one or more digits).  The row number is 1-based.
Example
This example returns the result.
bool result; 
FarPoint.Web.Spread.Model.CellRange range;
result = FarPoint.Web.Spread.Model.CellRange.TryParse("B3", out range);
TextBox1.Text = result.ToString();
Dim trange As FarPoint.Web.Spread.Model.CellRange
Dim result As Boolean 
result = FarPoint.Web.Spread.Model.CellRange.TryParse("B1", trange)
TextBox1.Text = result
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

CellRange Class
CellRange Members

 

 


Copyright © GrapeCity, inc. All rights reserved.