Device.Option

説明

デバイスの下にネストされているオプション Property を戻します。オプションを持たないデバイスドライバも存在します。オプションプロパティは、デバイス記述ファイルに指定されています。

C#構文

// get accessor

Property rtn = Device.Option;

VBScript の例

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