VitNX_ListView.SelectItems (IEnumerable<Int32>) Method

public void SelectItems( 
IEnumerable<int> indexes 
)
This language is not supported or no code example is available.

Parameters

indexes
IEnumerable<int>

public void SelectItems(IEnumerable<int> indexes)
 {
     _selectedIndices.Clear();
 
     var list = indexes.ToList();
 
     foreach (var index in list)
     {
         if (index < 0 || index > Items.Count - 1)
             throw new IndexOutOfRangeException($"Value '{index}' is outside of valid range.");
 
         _selectedIndices.Add(index);
     }
 
     if (SelectedIndicesChanged != null)
         SelectedIndicesChanged(this, null);
 
     _anchoredItemStart = list[list.Count - 1];
     _anchoredItemEnd = list[list.Count - 1];
 
     Invalidate();
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition