'宣言 Public ReadOnly Property CheckedItems As Infragistics.Win.CheckedValueListItemsCollection
public Infragistics.Win.CheckedValueListItemsCollection CheckedItems {get;}
CheckedItems コレクション プロパティは ValueList クラスによって公開される同じ名前のプロパティをミラーします。
CheckedItems コレクションは .NET CheckedListBox コントロールによって公開される同じ名前のコレクションと同様のコレクションです。アプリケーションでエンドユーザーがドロップダウンから複数値を選択必要がある場合、チェックボックスを使用できます。1 つの選択された項目から値を決定する代わりに、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; }
UltraComboEditor クラス
UltraComboEditor メンバ
CheckState プロパティ
ValueListItem クラス
Items コレクション
SetCheckState メソッド