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


InkCollectorGestureEventArgs.Gestures - свойство

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

Gets an array of Gesture objects, in order of confidence, from the recognizer.

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

Синтаксис

'Декларация
Public ReadOnly Property Gestures As Gesture()
'Применение
Dim instance As InkCollectorGestureEventArgs
Dim value As Gesture()

value = instance.Gestures
public Gesture[] Gestures { get; }
public:
property array<Gesture^>^ Gestures {
    array<Gesture^>^ get ();
}
/** @property */
public Gesture[] get_Gestures()
public function get Gestures () : Gesture[]

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

Тип: array<Microsoft.Ink.Gesture[]
An array of Gesture objects, in order of confidence, from the recognizer.

Заметки

For descriptions of the application gesture, see the ApplicationGesture enumeration.

The Gesture event occurs when the recognizer recognizes an application gesture.

The array contains information about applications gestures, not system gesture. For more information about gestures, see Using Gestures.

Примеры

This C# example creates an InkCollectorGestureEventHandler that writes the Id values of possible gestures, in order of confidence, into a TextBox, theTextBox.

private void theInkCollector_Gesture(object sender,
    Microsoft.Ink.InkCollectorGestureEventArgs e)
{
  for (int i = 0; i < e.Gestures.Length; i++)
  {
    theTextBox.Text += e.Gestures[i].Id.ToString();
    if (i < e.Gestures.Length - 1)
      theTextBox.Text += ", ";
  }
}

This Microsoft® Visual Basic® .NET example creates an InkCollectorGestureEventHandler that writes the Id values of possible gestures, in order of confidence, into a TextBox, theTextBox.

Public Sub theInkCollector_Gesture(ByVal sender As Object, ByVal e As InkCollectorGestureEventArgs) _
Handles theInkCollector.Gesture
  Dim i As Integer
  For i = 0 To e.Gestures.Length - 1
    theTextBox.Text += e.Gestures(i).Id.ToString()
    If i < e.Gestures.Length - 1 Then
      theTextBox.Text = theTextBox.Text + ", "
    EndIf
  Next
End Sub

Платформы

Windows Vista

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

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

.NET Framework

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

См. также

Ссылки

InkCollectorGestureEventArgs Класс

InkCollectorGestureEventArgs - члены

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

Gesture

Gesture.Id

InkCollector

InkCollector.Gesture