次の方法で共有


BindingManagerBase.Position プロパティ

派生クラスでオーバーライドされると、このデータ ソースにバインドされたコントロールが指す、基になるリストでの位置を取得または設定します。

Public MustOverride Property Position As Integer
[C#]
public abstract int Position {get; set;}
[C++]
public: __property virtual int get_Position() = 0;public: __property virtual void set_Position(int) = 0;
[JScript]
public abstract function get Position() : int;public abstract function set Position(int);

プロパティ値

基になるリストの中での位置を指定する、0 から始まるインデックス番号。

解説

Position を使用して、 BindingManagerBase によって維持されている、基になるリストを反復処理します。最初の項目に移動するには、 Position を 0 に設定します。リストの末尾に移動するには、 PositionCount プロパティの値から 1 を引いた値に設定します。

PositionChanged イベントは、 Position プロパティの値が変更されると発生します。

使用例

[Visual Basic, C#, C++] Position プロパティを設定する 4 つのメソッドの例を次に示します。MoveNext メソッドは、プロパティの値を 1 増加します。MovePrevious メソッドは、プロパティの値を 1 減少します。MoveFirst は、プロパティの値を 0 に設定します。MoveLast は、プロパティの値を、 Count プロパティの値から 1 引いた値に設定します。

 
Private Sub BindingManagerBase_CurrentChanged(sender As Object, e As EventArgs)
    ' Print the new value of the current object.
    Console.Write("Current Changed: ")
    Console.WriteLine(CType(sender, BindingManagerBase).Current)
End Sub 'BindingManagerBase_CurrentChanged


Private Sub MoveNext()
    ' Increment the Position property value by one.
    myBindingManagerBase.Position += 1
End Sub 'MoveNext


Private Sub MovePrevious()
    ' Decrement the Position property value by one.
    myBindingManagerBase.Position -= 1
End Sub 'MovePrevious


Private Sub MoveFirst()
    ' Go to the first item in the list.
    myBindingManagerBase.Position = 0
End Sub 'MoveFirst


Private Sub MoveLast()
    ' Go to the last row in the list.
    myBindingManagerBase.Position = myBindingManagerBase.Count - 1
End Sub 'MoveLast

[C#] 
private void BindingManagerBase_CurrentChanged
(object sender, EventArgs e)
{
   // Print the new value of the current object.
   Console.Write("Current Changed: ");
   Console.WriteLine(((BindingManagerBase)sender).Current);
}

private void MoveNext()
{
   // Increment the Position property value by one.
   myBindingManagerBase.Position += 1;
}

private void MovePrevious()
{
   // Decrement the Position property value by one.
   myBindingManagerBase.Position -= 1;
}

private void MoveFirst()
{
   // Go to the first item in the list.
   myBindingManagerBase.Position = 0;
}

private void MoveLast()
{
   // Go to the last row in the list.
   myBindingManagerBase.Position = 
   myBindingManagerBase.Count - 1;
}
   

[C++] 
private:
void BindingManagerBase_CurrentChanged
(Object* sender, EventArgs* /*e*/)
{
   // Print the new value of the current object.
   Console::Write(S"Current Changed: ");
   Console::WriteLine((dynamic_cast<BindingManagerBase*>(sender))->Current);
}

void MoveNext()
{
   // Increment the Position property value by one.
   myBindingManagerBase->Position = myBindingManagerBase->Position + 1;
}

void MovePrevious()
{
   // Decrement the Position property value by one.
   myBindingManagerBase->Position = myBindingManagerBase->Position - 1;
}

void MoveFirst()
{
   // Go to the first item in the list.
   myBindingManagerBase->Position = 0;
}

void MoveLast()
{
   // Go to the last row in the list.
   myBindingManagerBase->Position = 
   myBindingManagerBase->Count - 1;
}
   

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

BindingManagerBase クラス | BindingManagerBase メンバ | System.Windows.Forms 名前空間