DesignerVerbCollection.IndexOf(DesignerVerb) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá index zadaného DesignerVerbobjektu .
public:
int IndexOf(System::ComponentModel::Design::DesignerVerb ^ value);
public int IndexOf (System.ComponentModel.Design.DesignerVerb value);
public int IndexOf (System.ComponentModel.Design.DesignerVerb? value);
member this.IndexOf : System.ComponentModel.Design.DesignerVerb -> int
Public Function IndexOf (value As DesignerVerb) As Integer
Parametry
- value
- DesignerVerb
Čí DesignerVerb index se má dostat do kolekce.
Návraty
Index zadaného objektu, pokud je nalezen v seznamu; v opačném případě -1.
Příklady
Následující příklad kódu ukazuje, jak otestovat přítomnost DesignerVerbDesignerVerbCollectionv .
// Tests for the presence of a DesignerVerb in the collection,
// and retrieves its index if it is found.
DesignerVerb^ testVerb = gcnew DesignerVerb( "Example designer verb", gcnew EventHandler( this, &Class1::ExampleEvent ) );
int itemIndex = -1;
if ( collection->Contains( testVerb ) )
itemIndex = collection->IndexOf( testVerb );
// Tests for the presence of a DesignerVerb in the collection,
// and retrieves its index if it is found.
DesignerVerb testVerb = new DesignerVerb("Example designer verb", new EventHandler(this.ExampleEvent));
int itemIndex = -1;
if( collection.Contains( testVerb ) )
itemIndex = collection.IndexOf( testVerb );
' Tests for the presence of a DesignerVerb in the collection,
' and retrieves its index if it is found.
Dim testVerb As New DesignerVerb("Example designer verb", New EventHandler(AddressOf Me.ExampleEvent))
Dim itemIndex As Integer = -1
If collection.Contains(testVerb) Then
itemIndex = collection.IndexOf(testVerb)
End If
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.