VCDPropertyElements

このクラスはVCDPropertyElementクラスライブラリリファレンス>クラス>VCDPropertyElement オブジェクトのコレクションです。

サンプル

こちらの例ではデバッグ出力ウィンドウ内に全てのVCDPropertyItemsVCDPropertyElementsの一覧を表示させています。

[VB.NET]
Dim PropertyItem As VCDPropertyItem
Dim PropertyElement As VCDPropertyElement

For Each PropertyItem In IcImagingControl1.VCDPropertyItems
     Trace.WriteLine(PropertyItem.Name)
     For Each PropertyElement In PropertyItem.Elements
         Trace.WriteLine("    " + PropertyElement.Name)
     Next
Next
[C#]
// トレーシングを有効にするために、ソースコードの初めに"#define TRACE" といれる必要があります。
foreach( VCDPropertyItem PropertyItem in ICImagingControl1.VCDPropertyItems )
{
     Trace.WriteLine(PropertyItem.Name);
     foreach( VCDPropertyElement PropertyElement in PropertyItem.Elements)
     {
         Trace.WriteLine("    " + PropertyElement.Name);
     }
}

インフォメーション

ネームスペース: TIS.Imaging
  IC Imaging Control 2.0より導入