Device.Option

Description

Returns the option Property nested under the device. Not all device driver have options. The option property is specified in the device description file.

C# Syntax

// get accessor
Property rtn = Device.Option;

Examples

VBScript Example

Application.Devices.enable = true
set oDevice = Application.Devices.Item("MIDIKeyboard")
If TypeName (oDevice) = "Nothing" Then
set oDevice = Application.Devices.AddDevice( "MIDIKeyboard" )
End If
If TypeName(oDevice) <> "Nothing" Then
InspectObj oDevice.Option
End If