「マクロリファレンス:3:OutputBar オブジェクト」の版間の差分
ナビゲーションに移動
検索に移動
細 「マクロリファレンス:3:OutputBar オブジェクト」を保護しました ([編集=管理者のみ許可] (無期限) [移動=管理者のみ許可] (無期限)) [カスケード] |
編集の要約なし |
||
| 4行目: | 4行目: | ||
;構文 | ;構文 | ||
< | <syntaxhighlight lang="javascript"> | ||
outputBar.Clear(); | outputBar.Clear(); | ||
</ | </syntaxhighlight> | ||
==SetFocus メソッド== | ==SetFocus メソッド== | ||
| 12行目: | 12行目: | ||
;構文 | ;構文 | ||
< | <syntaxhighlight lang="javascript"> | ||
outputBar.SetFocus(); | outputBar.SetFocus(); | ||
</ | </syntaxhighlight> | ||
==Write メソッド== | ==Write メソッド== | ||
| 20行目: | 20行目: | ||
;構文 | ;構文 | ||
< | <syntaxhighlight lang="javascript"> | ||
outputBar.Write(str); | outputBar.Write(str); | ||
</ | </syntaxhighlight> | ||
;引数 | ;引数 | ||
| 32行目: | 32行目: | ||
;構文 | ;構文 | ||
< | <syntaxhighlight lang="javascript"> | ||
outputBar.Writeln(str); | outputBar.Writeln(str); | ||
</ | </syntaxhighlight> | ||
;引数 | ;引数 | ||
| 45行目: | 45行目: | ||
;構文 | ;構文 | ||
< | <syntaxhighlight lang="javascript"> | ||
var b = outputBar.Visible; | var b = outputBar.Visible; | ||
outputBar.Visible= b; | outputBar.Visible= b; | ||
</ | </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;
スポンサーリンク