Compartir a través de


InkOverlay.GetGestureStatus (Método)

Actualización: noviembre 2007

Devuelve un valor que indica si el objeto InkOverlay tiene el interés en un movimiento de aplicacióndeterminado.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink (en Microsoft.Ink.dll)

Sintaxis

'Declaración
Public Function GetGestureStatus ( _
    gesture As ApplicationGesture _
) As Boolean
'Uso
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

Parámetros

Valor devuelto

Tipo: System.Boolean
Si el objeto InkOverlay tiene el interés en un movimiento de aplicación determinado.

Valor

Significado

true

El objeto InkOverlay tiene el interés en el movimiento. El evento Gesture se produce cuando se reconoce el movimiento.

false

El objeto InkOverlay no tiene el interés en el movimiento.

Comentarios

Este método genera una excepción si el parámetro gesture se establece en AllGestures.

Para establecer el interés del objeto InkOverlay en un movimiento particular, llame al método SetGestureStatus.

Nota

De forma predeterminada, el objeto InkOverlay no tiene el interés en ningún movimiento de la aplicación.

Ejemplos

En este ejemplo de C# se crea ArrayList, que contiene todos los movimientos de aplicación para los que un objeto InkOverlay, theInkOverlay, tiene el interés.

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));
}

En este ejemplo de Microsoft Visual Basic .NET se crea ArrayList, que contiene todos los movimientos de aplicación para los que un objeto InkOverlay, theInkOverlay, tiene el interés.

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

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

InkOverlay (Clase)

InkOverlay (Miembros)

Microsoft.Ink (Espacio de nombres)

ApplicationGesture

InkOverlay.Gesture

InkOverlay.SetGestureStatus