DeviceCollection.AddDevice

説明

新しいデバイスドライバをデバイスマネージャのリストから削除します。デバイスドライバを使用する前に、このメソッドを使用して Device オブジェクトを作成する必要があります。

C#構文

Device DeviceCollection.AddDevice( String in_bstrDeviceName );

スクリプト構文

oReturn = DeviceCollection.AddDevice( DeviceName );

戻り値

Device

パラメータ

パラメータ タイプ 説明
DeviceName String 追加するデバイスの名前

JScript の例

/*

	This example demonstrates how to work with devices through scripting.

*/

NewScene( null, false );

// First make sure the device manager is active (we can't add devices if it isn't)

if (!Application.Devices.Enable) {

	Application.Devices.Enable = true;

}

// Get the DeviceManager (DeviceCollection)

var oDevices = Application.Devices;

// Get a pointer to the PC1600 Device, if it exists

var oDevice = oDevices.Item("PC1600");

// If it doesn't exist, then create it

if (oDevice == null) {

	oDevice = oDevices.AddDevice( "PC1600" );

}

LogMessage( "The device name is " + oDevice );

//INFO : The device name is DeviceManager.PC1600

関連項目

DeviceCollection.RemoveDevice