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

this() private méthode

private this ( int index ) : objectIList.System.Collections
index int
Résultat objectIList.System.Collections
			object IList.this [int index] {
				get { return this [index]; }
				set {
					//UIA Framework event: Item Replaced
					OnUIACollectionChangedEvent (new CollectionChangeEventArgs (CollectionChangeAction.Remove, this [index]));

					if (value is ListViewItem)
						this [index] = (ListViewItem) value;
					else
						this [index] = new ListViewItem (value.ToString ());

					OnChange ();
					//UIA Framework event: Item Replaced
					OnUIACollectionChangedEvent (new CollectionChangeEventArgs (CollectionChangeAction.Add, value));
				}
			}
			#endregion	// Public Properties

Same methods

ListView.ListViewItemCollection::this ( int index ) : System.Windows.Forms.ListViewItem
ListView.ListViewItemCollection::this ( string key ) : System.Windows.Forms.ListViewItem