ICImagingControl.DeviceCurrent Property

現在使用中の画像取り込みデバイスを含むDeviceクラスライブラリリファレンス>クラス>Deviceオブジェクトを返します。

構文

[VB.NET]
Public DeviceCurrent As Device
[C#]
public Device DeviceCurrent;

インフォメーション

IC Imaging Control 3.1より導入

サンプル

この例では使用中のデバイスを問い合わせる方法を紹介しています。

[VB.NET]
End If MyDevice As TIS.Imaging.Device

MyDevice = IcImagingControl1.DeviceCurrent

If Not MyDevice Is Nothing Then
     Console.WriteLine("Current Device is " + MyDevice.Name)
Else
     Console.WriteLine("Currently no device opened")
End If
[C#]
TIS.Imaging.Device MyDevice = null;

MyDevice = ICImagingControl1.DeviceCurrent;
  if (MyDevice != null)
{
     Console.WriteLine("Current Device is " + MyDevice.Name  );
}
else
{
     Console.WriteLine("Currently no device opened");
}