ErrPrintf(string)

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » ErrPrintf(string) Version 2.0

説明

ErrPrintf 関数は、Command Line HistorySystem Monitor に赤色のエラーメッセージを出力します。

引数

  • string:
    Command Line History と System Monitor に出力する文字列です。

戻り値

この関数は何も返しません。

Command Line History と System Monitor に "This is a red error message!" というエラーメッセージを出力します。

Lua
return function()
-- Prints an error message in the command line feedback in red text.
ErrPrintf("This is an error message!")
end