다음을 통해 공유


StylusDevice.GetPosition(IInputElement) 메서드

정의

스타일러스의 위치를 가져옵니다.

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

매개 변수

relativeTo
IInputElement

IInputElement(x,y) 좌표가 매핑되는 입니다.

반환

relativeTo에 상대적인 스타일러스 위치를 나타내는 Point입니다.

특성

예외

relativeToUIElementFrameworkContentElement도 아닌 경우

예제

다음 예제는 GetPosition 메서드.

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)

적용 대상