StylusDevice.Inverted プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
スタイラスの副先端が使用されているかどうかを示す値を取得します。
public:
property bool Inverted { bool get(); };
public bool Inverted { get; }
member this.Inverted : bool
Public ReadOnly Property Inverted As Boolean
プロパティ値
スタイラスの副先端が使用されている場合は true
。それ以外の場合は false
。 既定値は、false
です。
例
Invertedプロパティの例を次に示します。
private void OnStylusMove(object sender, StylusEventArgs e)
{
StylusDevice myStylusDevice = e.StylusDevice;
if (myStylusDevice != null)
{
if (myStylusDevice.Inverted)
{
textbox1.Text = "stylus moves with eraser down";
}
else
{
textbox1.Text = "stylus moves with pen down";
}
}
}
Private Sub OnStylusMove(ByVal sender As Object, _
ByVal e As StylusEventArgs)
Dim myStylusDevice As StylusDevice
myStylusDevice = e.StylusDevice
If myStylusDevice.Inverted = True Then
textbox1.Text = "stylus moves with eraser down"
Else
textbox1.Text = "stylus moves with pen down"
End If
End Sub
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET