StylusDevice.Target プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
入力を受け取る要素を取得します。
public:
virtual property System::Windows::IInputElement ^ Target { System::Windows::IInputElement ^ get(); };
public override System.Windows.IInputElement Target { get; }
member this.Target : System.Windows.IInputElement
Public Overrides ReadOnly Property Target As IInputElement
プロパティ値
入力を受け取る IInputElement オブジェクト。
例
Targetプロパティの例を次に示します。
// See to what Target property is set
// First see if it's null
if (null == myStylusDevice.Target)
{
textbox1.AppendText("Target: null\n");
}
else
{
// Otherwise display the underlying type
textbox1.AppendText("Target: " + myStylusDevice.Target.GetType().Name + "\n");
}
' See to what Target property is set
' First see if it's null
If IsNothing(myStylusDevice.Target) Then
textbox1.AppendText("Target: null" + vbCrLf)
Else
' Otherwise display the underlying type
textbox1.AppendText("Target (type): " + TypeName(myStylusDevice.Target) + vbCrLf)
End If
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET