StylusDevice.InAir Propiedad

Definición

Obtiene un valor que indica si el lápiz de Tablet PC se ha situado sobre el digitalizador sin llegar a tocarlo.

public:
 property bool InAir { bool get(); };
public bool InAir { get; }
member this.InAir : bool
Public ReadOnly Property InAir As Boolean

Valor de propiedad

true si el lápiz está situado sobre el digitalizador sin llegar a tocarlo; de lo contrario, false. De manera predeterminada, es false.

Ejemplos

En el ejemplo siguiente se muestra la InAir propiedad .

private void OnMouseMove(object sender, MouseEventArgs e)
{
    StylusDevice myStylusDevice = e.StylusDevice;

    if (myStylusDevice != null)
    {
        if (myStylusDevice.InAir)
        {
            textbox1.Text = "stylus moves in air";
        }
        else
        {
            textbox1.Text = "stylus moves with pen down";
        }
    }
}
Private Sub OnMouseMove(ByVal sender As Object, _
                        ByVal e As MouseEventArgs)

    Dim myStylusDevice As StylusDevice
    myStylusDevice = e.StylusDevice
    If Not IsNothing(myStylusDevice) Then
        If myStylusDevice.InAir = True Then
            textbox1.Text = "stylus moves in air"
        Else
            textbox1.Text = "stylus moves with pen down"
        End If
    End If
End Sub

Se aplica a