DesignerActionListCollection.IndexOf(DesignerActionList) Method

Definition

Determines the index of a specific item in the collection.

public:
 int IndexOf(System::ComponentModel::Design::DesignerActionList ^ value);
public int IndexOf (System.ComponentModel.Design.DesignerActionList value);
public int IndexOf (System.ComponentModel.Design.DesignerActionList? value);
member this.IndexOf : System.ComponentModel.Design.DesignerActionList -> int
Public Function IndexOf (value As DesignerActionList) As Integer

Parameters

value
DesignerActionList

The DesignerActionList to locate in the collection.

Returns

The index of value if found in the internal list; otherwise, -1.

Remarks

Internally, the DesignerActionListCollection class uses a System.Collections.ArrayList to contain its collection of DesignerActionList objects.

Applies to

See also