TreeNodeStyleCollection.IndexOf(TreeNodeStyle) 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 the specified TreeNodeStyle object in the collection.
public:
int IndexOf(System::Web::UI::WebControls::TreeNodeStyle ^ style);
public int IndexOf (System.Web.UI.WebControls.TreeNodeStyle style);
member this.IndexOf : System.Web.UI.WebControls.TreeNodeStyle -> int
Public Function IndexOf (style As TreeNodeStyle) As Integer
Parameters
- style
- TreeNodeStyle
The TreeNodeStyle to locate.
Returns
The zero-based index of the first occurrence of style
within the TreeNodeStyleCollection, if found; otherwise, -1.
Remarks
Use the IndexOf method to determine the zero-based index of the specified TreeNodeStyle object in the TreeNodeStyleCollection object. If the node is not in the collection, the method returns -1.
Note
If the specified TreeNodeStyle object appears multiple times in the collection, the index of the first occurrence is returned.
Applies to
See also
.NET