Freigeben über


InkCollector.GetGestureStatus-Methode

Gibt einen Wert zurück, der angibt, ob das InkCollector-Objekt Interesse an einer bestimmten Anwendungsstiftbewegung hat.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Function GetGestureStatus ( _
    gesture As ApplicationGesture _
) As Boolean
'Usage
Dim instance As InkCollector
Dim gesture As ApplicationGesture
Dim returnValue As Boolean

returnValue = instance.GetGestureStatus(gesture)
public bool GetGestureStatus(
    ApplicationGesture gesture
)
public:
bool GetGestureStatus(
    ApplicationGesture gesture
)
public boolean GetGestureStatus(
    ApplicationGesture gesture
)
public function GetGestureStatus(
    gesture : ApplicationGesture
) : boolean

Parameter

Rückgabewert

Typ: System.Boolean
true , wenn das InkCollector-Objekt Interesse an einer bestimmten Anwendungsstiftbewegung hat; andernfalls false.

Hinweise

Das Gesture-Ereignis wird ausgelöst, wenn die Stiftbewegung erkannt wird.

Diese Methode löst eine Ausnahme aus, wenn der gesture-Parameter auf ApplicationGesture festgelegt ist.

Rufen Sie die InkCollector.SetGestureStatus-Methode auf, um das Interesse des InkCollector-Objekts für eine bestimmte Stiftbewegung festzulegen.

Hinweis

Standardmäßig hat das InkCollector-Objekt kein Interesse an irgendeiner Anwendungsstiftbewegung.

Beispiele

In diesem C#-Beispiel wird eine ArrayList erstellt, die alle Anwendungsstiftbewegungen enthält, an denen das InkCollector-Objekt theInkCollector Interesse hat.

using Microsoft.Ink;
// . . .
// Return an array of all of the ApplicationGestures that
// have their status set to true on the InkCollector object.
private ApplicationGesture [] GetSetAppGestures(InkCollector theInkCollector)
{
    ArrayList result = new ArrayList();
    Array gestureArray = System.Enum.GetValues(typeof(ApplicationGesture));
    foreach (ApplicationGesture theGesture in gestureArray)
    {
        // ApplicationGesture.AllGestures is not a meaningful gesture
        // to pass to GetGestureStatus()
        if (theGesture != ApplicationGesture.AllGestures && 
            theInkCollector.GetGestureStatus(theGesture))
        {
            result.Add(theGesture);
        }
    }
    return (ApplicationGesture[])result.ToArray(typeof(ApplicationGesture));
}

In diesem Microsoft Visual Basic .NET-Beispiel wird eine ArrayList erstellt, die alle Anwendungsstiftbewegungen enthält, an denen das InkCollector-Objekt theInkCollector Interesse hat.

Imports Microsoft.Ink
' . . .
' Return an array of all of the ApplicationGestures that
' have their status set to true on the InkCollector object.
Private Function GetSetAppGestures(ByVal theInkCollector As InkCollector) As ApplicationGesture()
    Dim result As New ArrayList()
    Dim sampleGesture As ApplicationGesture = ApplicationGesture.NoGesture
    Dim theGestures As Array = System.Enum.GetValues(sampleGesture.GetType())
    Dim theGesture As ApplicationGesture
    For Each theGesture In theGestures
        ' ApplicationGesture.AllGestures is not a meaningful 
        ' gesture to pass to GetGestureStatus()
        If (Not theGesture.Equals(ApplicationGesture.AllGestures)) AndAlso _
            theInkCollector.GetGestureStatus(theGesture) Then
            result.Add(theGesture)
        End If
    Next
    Return CType(result.ToArray(test.GetType()), ApplicationGesture())
End Function

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

InkCollector-Klasse

InkCollector-Member

Microsoft.Ink-Namespace

ApplicationGesture

InkCollector.Gesture

InkCollector.SetGestureStatus