ランタイム時における式評価
value関数
構文
value(式)
{the} value of 式
振る舞い
式は、現在のハンドラのコンテキスト内で評価されます。式には、変数(2番目の例のtotalなど)、演算子、関数呼び出しなどを含めることができます。the evaluationContextプロパティがGlobalまたはUniversalに設定されている場合、変数はローカルではなく、グローバルまたはユニバーサルとして扱われます。式の値を取得中にエラーが起こると、 問題を記述した例外オブジェクトがresult()関数によって返されます。
例
put the value of "51+93" into sum -- sumが144に設定されます
put value("total is greater than quarter" & bestQtrNum) into best
put value("(" & commaSeparatedText &")") into myList
put the value of file "storedProperties" into pList