メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt

Use this file to discover all available pages before exploring further.

機能

スクリプトの実行中に行われたアクションに関する情報を保存します。スクリプトが再度実行された場合に、その情報を利用できます。

メソッド

定義説明
Has (name: string): bool指定した名前のプロパティが配列に存在するかどうかを確認します。
Set (name: string, value: string)プロパティの名前と値を設定します。
Delete (name: string)指定した名前のプロパティを削除します。
DeleteAll ( )すべてのプロパティを削除します。

プロパティ

名前アクセス説明
NamesVARIANT読み取り専用ユーザーが指定したプロパティ名の配列。
IsEmptybool読み取り専用プロパティの配列が空かどうか。
Value (name: string)bool読み取り/書き込み指定した名前のプロパティの値。簡略記法を参照してください。

短縮構文

params.Value("Name") = "newValue" と記述する代わりに、括弧を直接使えます。
params("Name") = "newValue"
どちらの形式でも、指定した名前のプロパティに値を割り当てます。