ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
inViewMessage [-alpha float] [-assistMessage string] [-backColor uint] [-clear string] [-dragKill] [-fade] [-fadeInTime uint] [-fadeOutTime uint] [-fadeStayTime uint] [-font string] [-fontSize uint] [-frameOffset uint] [-hide] [-message string] [-minimize] [-position string] [-restore] [-show] [-statusMessage string] [-textAlpha float] [-textOffset uint]
inViewMessage は、取り消し可能、照会不可能、および編集不可能です。
ビュー内メッセージを表示するために使用されます。 注意: Linux の場合、inViewMessage の Alpha フラグと textAlpha フラグは、合成(透明度と不透明度)をサポートしているウィンドウ マネージャの実行中のみサポートされます。そうでない場合は、無視されます。さらに、メッセージ フェードのフラグ (-fade、-fadeInTime、-fadeStay、および -fadeOutTime) はサポートされていますが、ウィンドウ マネージャが合成をサポートしない場合、メッセージはフェード効果なしで表示されます。なし
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-message(-msg)
|
string
|
|||
|
||||
-assistMessage(-amg)
|
string
|
|||
|
||||
-statusMessage(-smg)
|
string
|
|||
|
||||
-position(-pos)
|
string
|
|||
|
||||
-clear(-cl)
|
string
|
|||
|
||||
-dragKill(-dk)
|
|
|||
|
||||
-hide(-hd)
|
|
|||
|
||||
-show(-sh)
|
|
|||
|
||||
-minimize(-min)
|
|
|||
|
||||
-restore(-res)
|
|
|||
|
||||
-fade(-f)
|
|
|||
|
||||
-backColor(-bkc)
|
uint
|
|||
|
||||
-alpha(-a)
|
float
|
|||
|
||||
-textAlpha(-ta)
|
float
|
|||
|
||||
-frameOffset(-fof)
|
uint
|
|||
|
||||
-textOffset(-tof)
|
uint
|
|||
|
||||
-font(-ft)
|
string
|
|||
|
||||
-fontSize(-fts)
|
uint
|
|||
|
||||
-fadeInTime(-fit)
|
uint
|
|||
|
||||
-fadeStayTime(-fst)
|
uint
|
|||
|
||||
-fadeOutTime(-fot)
|
uint
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// Create a default message // inViewMessage; // Create a message in the top right corner of the active viewport. // Also set the background color to black, and set the message to fade out after the default time. // inViewMessage -smg "test message" -pos topRight -bkc 0x00000000 -fade;