「Interpreter Append Output」の版間の差分

提供: AliceScript Wiki
ナビゲーションに移動 検索に移動
ページの作成:「インタプリンタからの標準出力にテキストを追記します Category:Alice.Interpreter {| class="wikitable" |+Interpreter_Append_Output |- |名前…」
 
タグ: モバイル編集 モバイルウェブ編集
 
16行目: 16行目:


==説明==
==説明==
<code>void Interpreter_Append_Output(string text,bool? isnewLine);</code>
<code>void Interpreter_Append_Output(string text,bool isnewLine=false);</code>


=====引数=====
=====引数=====
22行目: 22行目:
text 標準出力に追加するテキスト
text 標準出力に追加するテキスト


isnewLine 標準出力にテキストを追加した後で、標準の改行コードを挿入するかどうか。規定値はFalseです。
isnewLine 標準出力にテキストを追加した後で、標準の改行コードを挿入するかどうかを表す値。規定値はFalseです。

2022年1月15日 (土) 15:33時点における最新版

インタプリンタからの標準出力にテキストを追記します

Interpreter_Append_Output
名前空間 Alice.Interpreter
アセンブリ Alice.Runtime.dll
サポート AliceScript1


説明[編集]

void Interpreter_Append_Output(string text,bool isnewLine=false);

引数[編集]

text 標準出力に追加するテキスト

isnewLine 標準出力にテキストを追加した後で、標準の改行コードを挿入するかどうかを表す値。規定値はFalseです。