다음을 통해 공유


StylusDevice.DirectlyOver 속성

정의

포인터가 위치한 IInputElement를 가져옵니다.

public:
 property System::Windows::IInputElement ^ DirectlyOver { System::Windows::IInputElement ^ get(); };
public System.Windows.IInputElement DirectlyOver { get; }
member this.DirectlyOver : System.Windows.IInputElement
Public ReadOnly Property DirectlyOver As IInputElement

속성 값

포인터 아래에 있는 요소입니다.

예제

다음 예제는 DirectlyOver 속성입니다.

// See to what DirectlyOver property is set
// First see if it's null
if (null == myStylusDevice.DirectlyOver)
{
    textbox1.AppendText("DirectlyOver: null\n");
}
else
{
    // Otherwise display the underlying type
    textbox1.AppendText("DirectlyOver: " + myStylusDevice.DirectlyOver.GetType().Name + "\n");
}
' See to what DirectlyOver property is set
' First see if it's null
If IsNothing(myStylusDevice.DirectlyOver) Then
    textbox1.AppendText("DirectlyOver: null" + vbCrLf)
Else
    ' Otherwise display the underlying type
    textbox1.AppendText("DirectlyOver (type): " + TypeName(myStylusDevice.DirectlyOver) + vbCrLf)
End If

적용 대상