DataRepeater.ScrollItemIntoView メソッド (Int32)
DataRepeater のコントロール ビューに指定 DataRepeaterItem をスクロールします。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
Public Sub ScrollItemIntoView ( _
index As Integer _
)
public void ScrollItemIntoView(
int index
)
public:
void ScrollItemIntoView(
int index
)
member ScrollItemIntoView :
index:int -> unit
public function ScrollItemIntoView(
index : int
)
パラメーター
- index
型 : System.Int32
DataRepeaterItem のインデックス。
例外
例外 | 条件 |
---|---|
ArgumentOutOfRangeException | index に指定された値は 0 未満または ItemCount ~ 1. を超える。 |
解説
コントロールの表示部分の特定の DataRepeaterItem を表示するに ScrollItemIntoView のメソッドを呼び出します。項目は選択されていません。項目を選択するには、CurrentItemIndex のプロパティを設定します。
項目は最小限のスクロール アルゴリズムによってスクロールして表示します ; これは、コントロールの上部に配置されません。コントロールの上部と項目を配置するには、true に alignWithTop のパラメーターをに設定して ScrollItemIntoView のオーバーロードされたメソッドを呼び出します。
例
次のコード例は、最初の表示項目に DataRepeater のコントロールで現在選択されている項目がする方法を示します。DataRepeater1 という名前の DataRepeater のコントロールと SynchButton という名前の Button のコントロールが含まれているフォームがあると仮定しています。
Private Sub SynchButton_Click() Handles SynchButton.Click
' If the first displayed item is not the current item.
If DataRepeater1.FirstDisplayedItemIndex <>
DataRepeater1.CurrentItemIndex Then
' Make it the current item.
DataRepeater1.CurrentItemIndex =
DataRepeater1.FirstDisplayedItemIndex
' Align it with the top of the control.
DataRepeater1.ScrollItemIntoView(
DataRepeater1.FirstDisplayedItemIndex, True)
End If
End Sub
private void synchButton_Click(System.Object sender, System.EventArgs e)
{
// If the first displayed item is not the current item.
if (dataRepeater1.FirstDisplayedItemIndex != dataRepeater1.CurrentItemIndex)
// Make it the current item.
{
dataRepeater1.CurrentItemIndex = dataRepeater1.FirstDisplayedItemIndex;
// Align it with the top of the control.
dataRepeater1.ScrollItemIntoView(dataRepeater1.FirstDisplayedItemIndex, true);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間