// get accessor Channel Device.get_Channel( UInt32 in_channelID ); |
| Parameter | Type | Description |
|---|---|---|
| ID | String | Identifer of the channel to return. |
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
|