DesignerActionListCollection.IndexOf(DesignerActionList) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.