IObjectListFieldCollection.IndexOf Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne l'index d'un champ. Cette API est obsolète. Pour plus d’informations sur le développement d’applications mobiles ASP.NET, consultez Mobile Apps & Sites avec ASP.NET.
Surcharges
IndexOf(String) |
Retourne l'index d'un champ. Cette API est obsolète. Pour plus d’informations sur le développement d’applications mobiles ASP.NET, consultez Mobile Apps & Sites avec ASP.NET. |
IndexOf(ObjectListField) |
Retourne l'index d'un champ. Cette API est obsolète. Pour plus d’informations sur le développement d’applications mobiles ASP.NET, consultez Mobile Apps & Sites avec ASP.NET. |
IndexOf(String)
Retourne l'index d'un champ. Cette API est obsolète. Pour plus d’informations sur le développement d’applications mobiles ASP.NET, consultez Mobile Apps & Sites avec ASP.NET.
public:
int IndexOf(System::String ^ fieldIDOrTitle);
public int IndexOf (string fieldIDOrTitle);
abstract member IndexOf : string -> int
Public Function IndexOf (fieldIDOrTitle As String) As Integer
Paramètres
- fieldIDOrTitle
- String
Une chaîne à comparer avec la propriété Title
ou DataField
.
Retours
Index du champ spécifié.
Remarques
Dans la deuxième version de cette méthode, il recherche un champ avec la Title
propriété fieldId
et retourne le premier champ correspondant. Si aucune correspondance n’est trouvée, il recherche un champ avec le paramètre de fieldID
la DataField
propriété et retourne le premier champ correspondant. Sinon, -1
est retourné.
Voir aussi
- IndexOf(MobileListItem)
- IndexOf(String)
- IndexOf(ObjectListField)
- IndexOf(ObjectListItem)
- Présentation du contrôle ObjectList
S’applique à
IndexOf(ObjectListField)
Retourne l'index d'un champ. Cette API est obsolète. Pour plus d’informations sur le développement d’applications mobiles ASP.NET, consultez Mobile Apps & Sites avec ASP.NET.
public:
int IndexOf(System::Web::UI::MobileControls::ObjectListField ^ field);
public int IndexOf (System.Web.UI.MobileControls.ObjectListField field);
abstract member IndexOf : System.Web.UI.MobileControls.ObjectListField -> int
Public Function IndexOf (field As ObjectListField) As Integer
Paramètres
- field
- ObjectListField
Champ à rechercher dans la collection spécifiée.
Retours
Index du champ spécifié.
Remarques
Dans la première version de cette méthode, elle retourne l’index du champ spécifié. Si le champ spécifié n’est pas dans la collection, il retourne -1
.