WebPartDisplayModeCollection.IndexOf(WebPartDisplayMode) Method

Definition

Returns the position of a particular member of the collection.

public:
 int IndexOf(System::Web::UI::WebControls::WebParts::WebPartDisplayMode ^ value);
public int IndexOf (System.Web.UI.WebControls.WebParts.WebPartDisplayMode value);
member this.IndexOf : System.Web.UI.WebControls.WebParts.WebPartDisplayMode -> int
Public Function IndexOf (value As WebPartDisplayMode) As Integer

Parameters

value
WebPartDisplayMode

A WebPartDisplayMode that is a member of the collection.

Returns

An integer that indicates the position of a particular object in the collection.

Remarks

The IndexOf method is useful if you have multiple WebPartDisplayMode objects, and you need to know the ordinal position (the index) of one object relative to the others.

Applies to

See also