public static bool TryParse( string s, out CellRange result )
'Declaration Public Shared Function TryParse( _ ByVal s As String, _ ByRef result As CellRange _ ) As Boolean
'使用法 Dim s As String Dim result As CellRange Dim value As Boolean value = CellRange.TryParse(s, result)
文字列が正常に変換された場合は True、それ以外の場合は False
result パラメータは、文字列の解析結果を返します。
bool result; FarPoint.Win.Spread.Model.CellRange range; result = FarPoint.Win.Spread.Model.CellRange.TryParse("B3", out range); textBox1.Text = result.ToString();
Dim trange As FarPoint.Win.Spread.Model.CellRange Dim result As Boolean result = FarPoint.Win.Spread.Model.CellRange.TryParse("B1", trange) TextBox1.Text = result
CellRange クラス CellRange メンバ Parse メソッド
© 2004-2015, GrapeCity inc. All rights reserved.