ListBox.SelectedIndices プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ListBox 内で現在選択されているすべての項目の 0 から始まるインデックス番号を格納するコレクションを取得します。
public:
property System::Windows::Forms::ListBox::SelectedIndexCollection ^ SelectedIndices { System::Windows::Forms::ListBox::SelectedIndexCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ListBox.SelectedIndexCollection SelectedIndices { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedIndices : System.Windows.Forms.ListBox.SelectedIndexCollection
Public ReadOnly Property SelectedIndices As ListBox.SelectedIndexCollection
プロパティ値
コントロール内で現在選択されている項目のインデックスを格納している ListBox.SelectedIndexCollection。 項目が現在選択されていない場合は、空の ListBox.SelectedIndexCollection が返されます。
- 属性
例
次のコード例は、メソッドを使用 FindString して、検索テキストの項目内のすべてのインスタンスを検索する方法を ListBox示しています。 この例では、メソッドのバージョンを FindString 使用して、開始検索インデックスを指定して ListBox、 . この例では、再帰的な検索を防ぐために、リストの一覧の一番下に到達した後に、メソッドがリストの先頭から検索を開始するタイミング FindString を確認する方法も示します。 項目が見つかった ListBoxら、メソッドを使用して SetSelected 選択されます。
private:
void FindAllOfMyString( String^ searchString )
{
// Set the SelectionMode property of the ListBox to select multiple items.
listBox1->SelectionMode = SelectionMode::MultiExtended;
// Set our intial index variable to -1.
int x = -1;
// If the search string is empty exit.
if ( searchString->Length != 0 )
{
// Loop through and find each item that matches the search string.
do
{
// Retrieve the item based on the previous index found. Starts with -1 which searches start.
x = listBox1->FindString( searchString, x );
// If no item is found that matches exit.
if ( x != -1 )
{
// Since the FindString loops infinitely, determine if we found first item again and exit.
if ( listBox1->SelectedIndices->Count > 0 )
{
if ( x == listBox1->SelectedIndices[ 0 ] )
return;
}
// Select the item in the ListBox once it is found.
listBox1->SetSelected( x, true );
}
}
while ( x != -1 );
}
}
private void FindAllOfMyString(string searchString)
{
// Set the SelectionMode property of the ListBox to select multiple items.
listBox1.SelectionMode = SelectionMode.MultiExtended;
// Set our intial index variable to -1.
int x =-1;
// If the search string is empty exit.
if (searchString.Length != 0)
{
// Loop through and find each item that matches the search string.
do
{
// Retrieve the item based on the previous index found. Starts with -1 which searches start.
x = listBox1.FindString(searchString, x);
// If no item is found that matches exit.
if (x != -1)
{
// Since the FindString loops infinitely, determine if we found first item again and exit.
if (listBox1.SelectedIndices.Count > 0)
{
if(x == listBox1.SelectedIndices[0])
return;
}
// Select the item in the ListBox once it is found.
listBox1.SetSelected(x,true);
}
}while(x != -1);
}
}
Private Sub FindAllOfMyString(ByVal searchString As String)
' Set the SelectionMode property of the ListBox to select multiple items.
listBox1.SelectionMode = SelectionMode.MultiExtended
' Set our intial index variable to -1.
Dim x As Integer = -1
' If the search string is empty exit.
If searchString.Length <> 0 Then
' Loop through and find each item that matches the search string.
Do
' Retrieve the item based on the previous index found. Starts with -1 which searches start.
x = listBox1.FindString(searchString, x)
' If no item is found that matches exit.
If x <> -1 Then
' Since the FindString loops infinitely, determine if we found first item again and exit.
If ListBox1.SelectedIndices.Count > 0 Then
If x = ListBox1.SelectedIndices(0) Then
Return
End If
End If
' Select the item in the ListBox once it is found.
ListBox1.SetSelected(x, True)
End If
Loop While x <> -1
End If
End Sub
注釈
複数選択 ListBoxの場合、このプロパティは、インデックスを含むコレクションを、で選択されているすべての項目に ListBox返します。 単一選択 ListBoxの場合、このプロパティは、内の選択された項目のインデックスを含む 1 つの要素を含むコレクションを ListBox返します。 コレクションの項目を操作する方法の詳細については、次を参照してください ListBox.SelectedIndexCollection。
この ListBox クラスには、選択した項目を参照するさまざまな方法が用意されています。 プロパティを SelectedIndices 使用して、現在選択されている項目のインデックス位置を 1 回の選択 ListBoxで取得する代わりに、プロパティを SelectedIndex 使用できます。 項目のインデックス位置ではなく、現在選択 ListBoxされている項目を取得する場合は、プロパティを SelectedItem 使用します。 また、複数ListBoxの選択項目でSelectedItems選択したすべての項目を取得する場合は、このプロパティを使用できます。