説明
CmdObj 関数は、コマンドライン・オブジェクトに関する情報を返します。
引数
この関数は、引数を受け取りません。
戻り値
- handle:
コマンドライン・オブジェクトへのハンドルを返します。
例
すべてのプロパティと子を、Dump 関数で一覧表示しています。
|
return function() local cmd = CmdObj() Printf("=============== START OF DUMP ===============") cmd:Dump() Printf("================ END OF DUMP ================") Printf("Current text in the command line: " ..cmd.cmdtext) Printf("Current cmd edit object: " ..tostring(cmd.editobject and cmd.editobject:ToAddr())) Printf("Current cmd destination: " ..tostring(cmd.destination and cmd.destination:ToAddr())) Printf("Current user of the command line: " ..tostring(cmd.user and cmd.user:ToAddr())) Printf("Current profile of the command line: " ..tostring(cmd.profile and cmd.profile:ToAddr())) Printf("Current DMX readout: " ..cmd.dmxreadout) Printf("Current amount steps: " ..cmd.maxstep) Printf("Current selected object: " ..tostring(cmd:GetSelectedObject() and cmd:GetSelectedObject():ToAddr())) end |