StylusDevice.Target Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el elemento que recibe la entrada.
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
Valor de propiedad
Objeto IInputElement que recibe la entrada.
Ejemplos
En el ejemplo siguiente se muestra la Target propiedad .
// 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
Se aplica a
Col·laboreu amb nosaltres a GitHub
La font d'aquest contingut es pot trobar al GitHub, on també podeu crear i revisar problemes i sol·licituds d'extracció. Per obtenir més informació, consulteu la nostra guia per a col·laboradors.