PowerTools SPREAD for ASP.NET 8.0J
TryParse メソッド (CellRange)

解析する文字列
文字列で表現されるセル範囲。 戻り値が False の場合は、結果は NULL に設定されます。
文字列をセル範囲に変換します。
構文
'Declaration
 
Public Shared Function TryParse( _
   ByVal s As String, _
   ByRef result As CellRange _
) As Boolean
public static bool TryParse( 
   string s,
   out CellRange result
)

パラメータ

s
解析する文字列
result
文字列で表現されるセル範囲。 戻り値が False の場合は、結果は NULL に設定されます。
解説
TryParseメソッドに渡すテキストには、列の名前(1文字以上)とそれに続く行番号(1桁以上)で表現されたセル名が含まれている必要があります。行番号は1から始まります。
次のサンプルコードは、結果を返します。
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
参照

CellRange クラス
CellRange メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.