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