Condividi tramite


StylusDevice.GetPosition(IInputElement) Metodo

Definizione

Ottiene la posizione dello stilo.

public:
 System::Windows::Point GetPosition(System::Windows::IInputElement ^ relativeTo);
[System.Security.SecurityCritical]
public System.Windows.Point GetPosition (System.Windows.IInputElement relativeTo);
public System.Windows.Point GetPosition (System.Windows.IInputElement relativeTo);
[<System.Security.SecurityCritical>]
member this.GetPosition : System.Windows.IInputElement -> System.Windows.Point
member this.GetPosition : System.Windows.IInputElement -> System.Windows.Point
Public Function GetPosition (relativeTo As IInputElement) As Point

Parametri

relativeTo
IInputElement

Oggetto IInputElement a cui vengono mappate le coordinate (x,y).

Restituisce

Oggetto Point che rappresenta la posizione dello stilo rispetto a relativeTo.

Attributi

Eccezioni

Esempio

Nell'esempio seguente viene illustrato il GetPosition metodo.

Point myPoint = myStylusDevice.GetPosition(myStylusDevice.Target);
textbox1.AppendText("The relative position is: (" + myPoint.X.ToString() + "," + myPoint.Y.ToString() + ")\n");
Dim myPoint As Point = myStylusDevice.GetPosition(myStylusDevice.Target)
textbox1.AppendText("The relative position is: (" + myPoint.X.ToString() + "," + myPoint.Y.ToString() + ")" + vbCrLf)

Si applica a