BindingManagerBase.Count プロパティ
派生クラスでオーバーライドされると、 BindingManagerBase によって管理される行の数を取得します。
Public MustOverride ReadOnly Property Count As Integer
[C#]
public abstract int Count {get;}
[C++]
public: __property virtual int get_Count() = 0;
[JScript]
public abstract function get Count() : int;
プロパティ値
BindingManagerBase によって管理される行の数。
解説
Count プロパティを使用して、 BindingManagerBase によって維持されるリストの最後の行の項目を確認します。最後の項目に移動するには、 Count プロパティ値から 1 を引いた値を 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 名前空間 | Position