Device.Name Property

デバイス名を返します。

構文

[VB.NET]
Public Name As String
[C#]
public string Name;

制限

読み取り専用

サンプル

この例では最初に利用可能なデバイスを選択しています。

[VB.NET]
Dim dev As Device
dev = IcImagingControl1.Devices(0)
IcImagingControl1.Device = dev.Name
[C#]
Device dev = ICImagingControl1.Devices[0];
ICImagingControl1.Device = dev.Name;