System.Windows.Forms.ListView.CheckedListViewItemCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : System.Windows.Forms.ListViewItem
index int
return System.Windows.Forms.ListViewItem
			public ListViewItem this [int index] {
				get {
					if (owner.VirtualMode)
						throw new InvalidOperationException ();
					ArrayList checked_items = List;
					if (index < 0 || index >= checked_items.Count)
						throw new ArgumentOutOfRangeException ("index");
					return (ListViewItem) checked_items [index];
				}
			}

Same methods

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