バージョン

Item(Int32) プロパティ

このコレクション内の指定した順序位置にある項目を返します。
シンタックス
'宣言
 
Public Overloads ReadOnly Property Item( _
   ByVal index As Integer _
) As ValueListItem
public ValueListItem Item( 
   int index
) {get;}

パラメータ

index
このコレクション内の項目の順序位置。
解説

このコレクションの要素は関連付けられた DataValue でインデックスできます。ただし、その値が整数型の場合、インデクサー オーバー読み込みにアクセスするために、整数を Object 型の変数に変更する必要があります。整数をそのまま渡すと、このオーバー読み込みを介して実行され、パラメーター値はデータ値の代わりこのコレクション内のインデックスとして見なされます。

使用例
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;
}
参照