共用方式為


InkCollectorGestureEventArgs.Gestures 屬性

辨識器按照信賴度順序取得 Gesture 物件陣列。

命名空間:  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[]
從辨識器按照信賴度順序而得的 Gesture 物件陣列。

備註

如需應用程式筆勢的說明,請參閱 ApplicationGesture 列舉型別。

當辨識器辨識出應用程式筆勢時,就會發生 Gesture 事件。

這個陣列包含應用程式筆勢的相關資訊,而非系統筆勢。如需筆勢的詳細資訊,請參閱Using Gestures

範例

這個 C# 範例建立的 InkCollectorGestureEventHandler 會按照信賴度順序將可能筆勢的 Id 值寫入 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 += ", ";
  }
}

這個 Microsoft® Visual Basic® .NET 範例建立的 InkCollectorGestureEventHandler 會按照信賴度順序將可能筆勢的 Id 值寫入 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