Condividi tramite


Metodo InkOverlay.SetGestureStatus

Aggiornamento: novembre 2007

Imposta l'eventuale interesse dell'oggetto InkOverlay in un movimento dell'applicazione noto.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public Sub SetGestureStatus ( _
    gesture As ApplicationGesture, _
    listening As Boolean _
)
'Utilizzo
Dim instance As InkOverlay
Dim gesture As ApplicationGesture
Dim listening As Boolean

instance.SetGestureStatus(gesture, listening)
public void SetGestureStatus(
    ApplicationGesture gesture,
    bool listening
)
public:
void SetGestureStatus(
    ApplicationGesture gesture, 
    bool listening
)
public void SetGestureStatus(
    ApplicationGesture gesture,
    boolean listening
)
public function SetGestureStatus(
    gesture : ApplicationGesture, 
    listening : boolean
)

Parametri

  • listening
    Tipo: System.Boolean
    Eventuale interesse dell'oggetto InkOverlay in un movimento dell'applicazione noto.
    true se l'oggetto InkOverlay ha espresso un interesse nel movimento dell'applicazione.
    false se l'oggetto InkOverlay non ha espresso un interesse nel movimento dell'applicazione.

Note

Per attivare o disattivare tutti i movimenti dell'applicazione in una chiamata, utilizzare il valore AllGestures dell'enumerazione ApplicationGesture.

Per restituire un valore che indichi se l'oggetto InkOverlay ha un interesse in un particolare movimento dell'applicazione, chiamare il metodo GetGestureStatus.

Esempi

In questo esempio, l'oggetto InkOverlay, mInkOverlay esprime un interesse in quattro movimenti dell'enumerazione ApplicationGesture.

' set InkOverlay interest in the Left, Right, Up, Down gestures
mInkOverlay.SetGestureStatus(ApplicationGesture.Left, True)
mInkOverlay.SetGestureStatus(ApplicationGesture.Right, True)
mInkOverlay.SetGestureStatus(ApplicationGesture.Up, True)
mInkOverlay.SetGestureStatus(ApplicationGesture.Down, True)
// set InkOverlay interest in the Left, Right, Up, Down gestures
mInkOverlay.SetGestureStatus(ApplicationGesture.Left, true);
mInkOverlay.SetGestureStatus(ApplicationGesture.Right, true);
mInkOverlay.SetGestureStatus(ApplicationGesture.Up, true);
mInkOverlay.SetGestureStatus(ApplicationGesture.Down, true);

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

InkOverlay Classe

Membri InkOverlay

Spazio dei nomi Microsoft.Ink

InkOverlay.Gesture

InkOverlay.GetGestureStatus

ApplicationGesture