Freigeben über


InkOverlay.GetGestureStatus-Methode

Gibt einen Wert zurück, der angibt, ob das InkOverlay-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 InkOverlay
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
Ob das InkOverlay-Objekt Interesse an einer bestimmten Anwendungsstiftbewegung hat.

Wert

Bedeutung

true

Das InkOverlay-Objekt hat Interesse an der Stiftbewegung. Das Gesture-Ereignis wird ausgelöst, wenn die Stiftbewegung erkannt wird.

false

Das InkOverlay-Objekt hat kein Interesse an der Stiftbewegung.

Hinweise

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

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

Hinweis

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

Beispiele

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

using Microsoft.Ink;
// . . .
// Return an array of all of the ApplicationGestures that
// have their status set to true on the InkOverlay object.
private ApplicationGesture [] GetSetAppGestures(InkOverlay theInkOverlay)
{
    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 && 
            theInkOverlay.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 InkOverlay-Objekt theInkOverlay Interesse hat.

Imports Microsoft.Ink
' . . .
' Return an array of all of the ApplicationGestures that
' have their status set to true on the InkOverlay object.
Private Function GetSetAppGestures(ByVal theInkOverlay As InkOverlay) 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 _
            theInkOverlay.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

InkOverlay-Klasse

InkOverlay-Member

Microsoft.Ink-Namespace

ApplicationGesture

InkOverlay.Gesture

InkOverlay.SetGestureStatus