Поделиться через


CursorButtons.Count - свойство

Обновлен: Ноябрь 2007

Gets the number of CursorButton objects contained in the CursorButtons collection.

Пространство имен:  Microsoft.Ink
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Public ReadOnly Property Count As Integer
'Применение
Dim instance As CursorButtons
Dim value As Integer

value = instance.Count
public int Count { get; }
public:
virtual property int Count {
    int get () sealed;
}
/** @property */
public final int get_Count()
public final function get Count () : int

Значение свойства

Тип: System.Int32
The number of CursorButton objects contained in the CursorButtons collection.

Реализации

ICollection.Count

Примеры

This C# example finds the number of CursorButton objects for the CursorButtons collection, theCursorButtons, of a Cursor, theCursor.

CursorButtons theCursorButtons = theCursor.Buttons;
int theCount = theCursorButtons.Count;

This Microsoft® Visual Basic® .NET example finds the number of CursorButton objects for the CursorButtons collection, theCursorButtons, of a Cursor, theCursor.

Dim theCursorButtons As CursorButtons = theCursor.Buttons
Dim theCount As Integer = theCursorButtons.Count

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

CursorButtons Класс

CursorButtons - члены

Microsoft.Ink - пространство имен

CursorButton

Другие ресурсы

System.Collections.ICollection