「マクロリファレンス:3:OutputBar オブジェクト」の版間の差分

提供: MeryWiki
ナビゲーションに移動 検索に移動
マクロリファレンス:3:OutputBar オブジェクト」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限)) [カスケード]
編集の要約なし
4行目: 4行目:


;構文
;構文
<source lang="javascript">
<syntaxhighlight lang="javascript">
outputBar.Clear();
outputBar.Clear();
</source>
</syntaxhighlight>


==SetFocus メソッド==
==SetFocus メソッド==
12行目: 12行目:


;構文
;構文
<source lang="javascript">
<syntaxhighlight lang="javascript">
outputBar.SetFocus();
outputBar.SetFocus();
</source>
</syntaxhighlight>


==Write メソッド==
==Write メソッド==
20行目: 20行目:


;構文
;構文
<source lang="javascript">
<syntaxhighlight lang="javascript">
outputBar.Write(str);
outputBar.Write(str);
</source>
</syntaxhighlight>


;引数
;引数
32行目: 32行目:


;構文
;構文
<source lang="javascript">
<syntaxhighlight lang="javascript">
outputBar.Writeln(str);
outputBar.Writeln(str);
</source>
</syntaxhighlight>


;引数
;引数
45行目: 45行目:


;構文
;構文
<source lang="javascript">
<syntaxhighlight lang="javascript">
var b = outputBar.Visible;
var b = outputBar.Visible;
outputBar.Visible= b;
outputBar.Visible= b;
</source>
</syntaxhighlight>

2021年8月22日 (日) 22:10時点における版

メソッド

Clear メソッド

アウトプットバーのテキストをクリアします。

構文
outputBar.Clear();

SetFocus メソッド

アウトプットバーにフォーカスを設定します。

構文
outputBar.SetFocus();

Write メソッド

アウトプットバーにテキストを挿入します。

構文
outputBar.Write(str);
引数

str

挿入するテキストを指定します。

Writeln メソッド

アウトプットバーにテキストと改行を挿入します。

構文
outputBar.Writeln(str);
引数

str

挿入するテキストを指定します。

プロパティ

Visible プロパティ

アウトプットバーの表示状態を true か false で取得または設定します。

構文
var b = outputBar.Visible;
outputBar.Visible= b;
スポンサーリンク