'宣言 Public Shared Function ParseInput( _ ByVal worksheet As IWorksheet, _ ByVal value As System.String, _ ByVal contextRow As System.Integer, _ ByVal contextColumn As System.Integer, _ ByRef primitiveValue As IPrimitiveValue, _ ByRef expression As Expression, _ ByRef builtInNumFmt As System.Integer, _ Optional ByVal mode As ParseInputMode _ ) As System.Boolean
public static System.bool ParseInput( IWorksheet worksheet, System.string value, System.int contextRow, System.int contextColumn, out IPrimitiveValue primitiveValue, out Expression expression, out System.int builtInNumFmt, ParseInputMode mode )
パラメータ
- worksheet
- 数式を使用する GrapeCity.Spreadsheet.IWorksheet オブジェクト。
- value
- 入力値を示す文字列値。
- contextRow
- コンテキスト行インデックスを示す整数値。
- contextColumn
- コンテキスト列インデックスを示す整数値。
- primitiveValue
- プリミティブ値を格納するGrapeCity.CalcEngine.IPrimitiveValueオブジェクト。
- expression
- 入力した数式を格納するGrapeCity.CalcEngine.Expression。
- builtInNumFmt
- 入力値から解析された数値書式。
- mode
- テキストの解析方法を示すParseInputMode値。
戻り値の型
数式を正常に解析できる場合は
true
、それ以外の場合はfalse
。