次の方法で共有


DataRepeater.CurrentItemIndex プロパティ

更新 : 2007 年 11 月

DataRepeater コントロール内の現在の DataRepeaterItem を取得または設定します。

名前空間 :  Microsoft.VisualBasic.PowerPacks
アセンブリ :  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
<BrowsableAttribute(False)> _
Public Property CurrentItemIndex As Integer
'使用
Dim instance As DataRepeater
Dim value As Integer

value = instance.CurrentItemIndex

instance.CurrentItemIndex = value
[BrowsableAttribute(false)]
public int CurrentItemIndex { get; set; }
[BrowsableAttribute(false)]
public:
property int CurrentItemIndex {
    int get ();
    void set (int value);
}
public function get CurrentItemIndex () : int
public function set CurrentItemIndex (value : int)

プロパティ値

型 : System.Int32

現在の DataRepeaterItem のインデックス。

解説

DataRepeater コントロール内の CurrentItem のインデックスを返すか変更するには、このプロパティを使用します。CurrentItemIndex プロパティを設定すると、同じインデックスを持つ DataRepeaterItem がスクロールして表示されます。

メモ :

DataRepeaterItem は、全体が最小限のスクロール方法でスクロールして表示されます。項目を DataRepeater の上端に整列するには、ScrollItemIntoView メソッドを呼び出し、AlignWithTop パラメータに true を指定します。

CurrentItemIndex プロパティを使用して、検索結果に応じて DataRepeater コントロール内の項目にフォーカスを設定する方法を次の例に示します。この例は、DataRepeater1 という名前の DataRepeater コントロール、SearchTextBox という名前の TextBox、および SearchButton という名前の Button があり、DataRepeater が Northwind データベースの Products テーブルにバインドされていることを前提としています。

Private Sub SearchButton_Click(ByVal sender As System.Object, ByVal e As  _
  System.EventArgs) Handles SearchButton.Click
    Dim foundIndex As Integer
    Dim searchString As String
    searchString = SearchTextBox.Text
    foundIndex = ProductsBindingSource.Find("ProductID", _
     searchString)
    If foundIndex > -1 Then
        DataRepeater1.CurrentItemIndex = foundIndex
    Else
        MsgBox("Item " & searchString & " not found.")
    End If
End Sub
private void searchButton_Click(System.Object sender, System.EventArgs e)
{
    int foundIndex;
    string searchString;
    searchString = searchTextBox.Text;
    foundIndex = productsBindingSource.Find("ProductID", searchString);
    if (foundIndex > -1)
    {
        dataRepeater1.CurrentItemIndex = foundIndex;
    }
    else
    {
        MessageBox.Show("Item " + searchString + " not found.");
    }
}

アクセス許可

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

DataRepeater クラス

DataRepeater メンバ

Microsoft.VisualBasic.PowerPacks 名前空間

CurrentItemIndexChanged

その他の技術情報

DataRepeater コントロールの概要 (Visual Studio)