「マクロリファレンス:3:Documents コレクション」の版間の差分

提供: MeryWiki
ナビゲーションに移動 検索に移動
編集の要約なし
13行目: 13行目:
;構文
;構文
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
var doc = editor.documents.Item(index);
var obj = editor.documents.Item(index);
</syntaxhighlight>
</syntaxhighlight>

2023年5月6日 (土) 17:01時点における版

プロパティ

Count プロパティ

文書の数を数値で取得します。

構文
var i = editor.documents.Count;

Item プロパティ

指定したインデックスの Document オブジェクトを取得します。

構文
var obj = editor.documents.Item(index);
スポンサーリンク