StylusDevice.InAir プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タブレット ペンがデジタイザーの上にあるときに、接触していない状態かどうかを取得します。
public:
property bool InAir { bool get(); };
public bool InAir { get; }
member this.InAir : bool
Public ReadOnly Property InAir As Boolean
プロパティ値
タブレット ペンがデジタイザーの上にあるときに、接触していない状態の場合は true
。それ以外の場合は false
。 既定値は、false
です。
例
InAirプロパティの例を次に示します。
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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET