StylusDevice.Captured 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 capturó el lápiz.
public:
property System::Windows::IInputElement ^ Captured { System::Windows::IInputElement ^ get(); };
public System.Windows.IInputElement Captured { get; }
member this.Captured : System.Windows.IInputElement
Public ReadOnly Property Captured As IInputElement
Valor de propiedad
IInputElement que capturó el lápiz óptico.
Ejemplos
En el ejemplo siguiente se muestra la Captured propiedad .
// See to what Captured property is set
// First see if it's null
if (null == myStylusDevice.Captured)
{
textbox1.AppendText("Captured: null\n");
}
else
{
// Otherwise display the underlying type
textbox1.AppendText("Captured: " + myStylusDevice.Captured.GetType().Name + "\n");
}
' See to what Captured property is set
' First see if it's null
If IsNothing(myStylusDevice.Captured) Then
textbox1.AppendText("Captured: null" + vbCrLf)
Else
' Otherwise display the underlying type
textbox1.AppendText("Captured (type): " + TypeName(myStylusDevice.Captured) + 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.