'宣言 Public ReadOnly Property CheckedItems As CheckedValueListItemsCollection
public CheckedValueListItemsCollection CheckedItems {get;}
CheckState プロパティが 'Indeterminate' を返す項目は、CheckedItems コレクションに含まれません。
CheckedItems プロパティは .NET CheckedListBox コントロールによって公開される同じ名前のプロパティと同様のコレクションです。
EditorWithCombo の EditorValueSource プロパティが 'CheckedItems' に設定された場合、エディター値は各チェック済み項目の DataValue を含むリストで構成されます。CheckedItems コレクションは同じサイズのリストを返します。ただし値と対照的な項目への参照を含みます。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinEditors Imports System.Diagnostics Public Function IsItemChecked(ByVal comboEditor As UltraComboEditor, ByVal dataValue As Object) As Boolean Dim checkedItems As CheckedValueListItemsCollection = comboEditor.CheckedItems ' Iterate the CheckedItems collection and compare the value ' of each item therein to the specified value. Dim item As ValueListItem For Each item In checkedItems If Object.Equals(dataValue, item.DataValue) Then Return True Next Return False End Function
using Infragistics.Win; using Infragistics.Win.UltraWinEditors; using System.Diagnostics; public bool IsItemChecked( UltraComboEditor comboEditor, object dataValue ) { CheckedValueListItemsCollection checkedItems = comboEditor.CheckedItems; // Iterate the CheckedItems collection and compare the value // of each item therein to the specified value. foreach( ValueListItem item in checkedItems ) { if ( object.Equals(dataValue, item.DataValue) ) return true; } return false; }