VideoFormat.Name Property

VideoFormatの名前を返します。

構文

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

制限

読み取り専用

サンプル

こちらの例では最初に利用可能なビデオフォーマットを選択しています。

[VB.NET]
Dim Fmt As VideoFormat
Fmt = IcImagingControl1.VideoFormats(0)
IcImagingControl1.VideoFormat = Fmt.Name
[C#]
VideoFormat Fmt = ICImagingControl1.VideoFormats[0];
ICImagingControl1.VideoFormat = Fmt.Name;