Compartir a través de


InkEdit.GetGestureStatus (Método)

Actualización: noviembre 2007

Devuelve un valor que indica si el objeto InkEdit 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 InkEdit
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 control InkEdit tiene el interés en un movimiento de aplicación determinado.

Valor

Significado

true

El control InkEdit tiene el interés en el movimiento. El evento Gesture se produce cuando se reconoce el movimiento.

false

El control InkEdit no tiene el interés en el movimiento.

Comentarios

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

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

Nota

De forma predeterminada, el control InkEdit tiene el interés en los siguientes movimientos de aplicación:

Ejemplos

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

using Microsoft.Ink;
// . . .
// Return an array of all of the ApplicationGestures that
// have their status set to true on the InkEdit control.
private ApplicationGesture [] GetSetAppGestures(InkEdit theInkEdit)
{
    ArrayList result = new ArrayList();
    ApplicationGesture test = ApplicationGesture.NoGesture;
    Array gestureArray = System.Enum.GetValues(test.GetType());
    foreach (ApplicationGesture theGesture in gestureArray)
    {
        // ApplicationGesture.AllGestures is not a meaningful 
        // gesture to pass to GetGestureStatus()
        if (theGesture != ApplicationGesture.AllGestures && 
            theInkEdit.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 control InkEdit, theInkEdit, tiene el interés.

Imports Microsoft.Ink
' . . .
' Return an array of all of the ApplicationGestures that
' have their status set to true on the InkEdit control.
Private Function GetSetAppGestures(ByVal theInkEdit As InkEdit) _
    As ApplicationGesture()
    Dim result As New ArrayList()
    Dim test As ApplicationGesture = ApplicationGesture.NoGesture
    Dim theGestures As Array = System.Enum.GetValues(test.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

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

InkEdit (Clase)

InkEdit (Miembros)

Microsoft.Ink (Espacio de nombres)

ApplicationGesture

InkEdit.Gesture

InkEdit.SetGestureStatus