Channel.Enable

説明

チャンネルの有効状態を示すBoolean値を戻したり、設定したりします。有効状態によって、チャンネルがアクティブかどうかが決まります。

C#構文

// get accessor

Boolean rtn = Channel.Enable;

// set accessor

Channel.Enable = Boolean;

VBScript の例

Application.Devices.enable = true

' first add the device if it is not there yet

set oDevice = Application.Devices.Item("PC1600")

If TypeName (oDevice) = "Nothing" Then

set oDevice = Application.Devices.AddDevice( "PC1600" )

End If

set oChannel = oDevice.Channel(1)

logmessage "The channel 1 is enabled? " & oChannel.Enable