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


Cursors.Item - свойство

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

Gets the Cursor object at the specified index within the Cursors collection.

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

Синтаксис

'Декларация
Public ReadOnly Property Item ( _
    index As Integer _
) As Cursor
'Применение
Dim instance As Cursors
Dim index As Integer
Dim value As Cursor

value = instance.Item(index)
public Cursor Item[
    int index
] { get; }
public:
property Cursor^ Item[int index] {
    Cursor^ get (int index);
}
/** @property */
public Cursor get_Item(
    int index
)
JScript не поддерживает индексированные свойства.

Параметры

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

Тип: Microsoft.Ink.Cursor
The Cursor object at the specified index within the Cursors collection.

Заметки

An System.ArgumentOutOfRangeException is thrown if the index does not match an existing member of the Cursors collection.

ms581962.alert_note(ru-ru,VS.90).gifПримечание.

In C#, use the collection's indexer as shown in the following example, instead of using the collection's Item property.

Примеры

This C# example gets the first Cursor object from the Cursors collection.

Microsoft.Ink.Cursor theFirstCursor = theInkCollector.Cursors[0];

This Microsoft® Visual Basic® .NET example gets the first Cursor object from the Cursors collection.

Dim theFirstCursor As Microsoft.Ink.Cursor = theInkCollector.Cursors.Item(0)

Платформы

Windows Vista

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

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

.NET Framework

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

См. также

Ссылки

Cursors Класс

Cursors - члены

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

Cursor