System.Windows.Forms.ListView.SelectedListViewItemCollection.this C# (CSharp) Méthode

this() public méthode

public this ( int index ) : System.Windows.Forms.ListViewItem
index int
Résultat System.Windows.Forms.ListViewItem
			public ListViewItem this [int index] {
				get {
					if (!owner.is_selection_available || index < 0 || index >= Count)
						throw new ArgumentOutOfRangeException ("index");

					int item_index = owner.SelectedIndices [index];
					return owner.Items [item_index];
				}
			}

Same methods

ListView.SelectedListViewItemCollection::this ( string key ) : System.Windows.Forms.ListViewItem
ListView.SelectedListViewItemCollection::this ( int index ) : objectIList.System.Collections