IObjectListFieldCollection.IndexOf 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回欄位的索引。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 mobile Apps & Sites with ASP.NET。
多載
IndexOf(String) |
傳回欄位的索引。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 mobile Apps & Sites with ASP.NET。 |
IndexOf(ObjectListField) |
傳回欄位的索引。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 mobile Apps & Sites with ASP.NET。 |
IndexOf(String)
傳回欄位的索引。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 mobile Apps & Sites with 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
參數
- fieldIDOrTitle
- String
與 Title
或 DataField
屬性進行比較的字串。
傳回
所指定欄位的索引。
備註
在此方法的第二個版本中,它會搜尋具有 Title
屬性 fieldId
的欄位,並傳回第一個相符字段。 如果找不到相符專案,它會搜尋具有 DataField
屬性參數的 fieldID
欄位,並傳回第一個相符字段。 否則會傳回 -1
。
另請參閱
- IndexOf(MobileListItem)
- IndexOf(String)
- IndexOf(ObjectListField)
- IndexOf(ObjectListItem)
- ObjectList 控件簡介
適用於
IndexOf(ObjectListField)
傳回欄位的索引。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 mobile Apps & Sites with 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
參數
- field
- ObjectListField
要在指定的集合中搜尋的欄位。
傳回
所指定欄位的索引。
備註
在此方法的第一個版本中,它會傳回指定欄位的索引。 如果指定的欄位不在集合中,則會傳 -1
回 。