DesignerAutoFormatCollection.IndexOf(DesignerAutoFormat) Method

Definition

Returns the index of the specified DesignerAutoFormat object within the collection.

public:
 int IndexOf(System::Web::UI::Design::DesignerAutoFormat ^ format);
public int IndexOf (System.Web.UI.Design.DesignerAutoFormat format);
member this.IndexOf : System.Web.UI.Design.DesignerAutoFormat -> int
Public Function IndexOf (format As DesignerAutoFormat) As Integer

Parameters

format
DesignerAutoFormat

The DesignerAutoFormat to locate within the collection.

Returns

The zero-based index of the first occurrence of format within the collection; otherwise, -1, if the format is not in the collection.

Remarks

The IndexOf method determines equality by using the Equals method on the DesignerAutoFormat objects that are being compared.

Applies to

See also