PropertyGrid.PropertyTabCollection.GetEnumerator Method

Definition

Returns an enumeration of all the Property tabs in the collection.

public:
 virtual System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
override this.GetEnumerator : unit -> System.Collections.IEnumerator
Public Function GetEnumerator () As IEnumerator

Returns

An IEnumerator for the PropertyGrid.PropertyTabCollection.

Implements

Remarks

This method creates an enumerator that contains a snapshot of the collection. You can change the collection by changing the enumerator; however, multiple enumerators can simultaneously access the same collection. Changing the collection, either directly or through another enumerator, can cause Current or MoveNext to throw an exception.

Two enumerators created from the same collection at the same time can contain different snapshots. Removing objects from the enumerator also removes them from the collection.

Applies to