説明
GetChannelFunction 関数は、2つのインデックス入力に基づいて、チャンネル機能へのハンドルを返します。
引数
戻り値
- handle:
チャンネル機能へのハンドルを返します。
例
ハンドルに関連するデータを、Dump() 関数で出力します。
|
return function() local subfixtureIndex = SelectionFirst() if subfixtureIndex == nil then ErrPrintf("Please select a fixture with a Dimmer") return end local attributeIndex = GetAttributeIndex("Dimmer") local uiChannelIndex = GetUIChannelIndex(subfixtureIndex,attributeIndex) Printf("The UIChannel Index is: %i. The Attribute Index is: %i. ",uiChannelIndex, attributeIndex) if (attributeIndex == nil or uiChannelIndex == nil) then ErrPrintf("Something wrong happened, maybe your first selected fixture don't have a Dimmer - Please try again") return end Printf("=============== START OF DUMP ===============") GetChannelFunction(uiChannelIndex,attributeIndex):Dump() Printf("================ END OF DUMP ================") end |