Device.Channel

説明

デバイスドライバ内の、Device.ID で指定された Channel を戻します。

C#構文

// get accessor

Channel Device.get_Channel( UInt32 in_channelID );

パラメータ

パラメータ タイプ 説明
ID String 戻されるチャンネルの識別子

VBScript の例

Application.Devices.enable = true

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 First Channel is " & oChannel