Share via


ObjectListItem.Item[] プロパティ

定義

インデックスまたは名前で指定されたフィールドを取得または設定します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。

オーバーロード

Item[Int32]

インデックスまたは名前で指定されたフィールドを取得または設定します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。

Item[String]

インデックスまたは名前で指定されたフィールドを取得または設定します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。

Item[Int32]

インデックスまたは名前で指定されたフィールドを取得または設定します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。

public:
 property System::String ^ default[int] { System::String ^ get(int index); void set(int index, System::String ^ value); };
public string this[int index] { get; set; }
member this.Item(int) : string with get, set
Default Public Property Item(index As Integer) As String

パラメーター

index
Int32

オブジェクト リスト項目内で取得または設定するフィールドのインデックス。

プロパティ値

指定した index を持つフィールドの値。

こちらもご覧ください

適用対象

Item[String]

インデックスまたは名前で指定されたフィールドを取得または設定します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。

public:
 property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); void set(System::String ^ key, System::String ^ value); };
public string this[string key] { get; set; }
member this.Item(string) : string with get, set
Default Public Property Item(key As String) As String

パラメーター

key
String

オブジェクト リスト項目内で取得または設定するフィールドの名前。

プロパティ値

指定した key を持つフィールドの値。

注釈

オブジェクト リストのフィールドの Name または DataField プロパティと一致する必要があります。

こちらもご覧ください

適用対象