IInputElement.IsStylusOver Property

Definition

Gets a value that indicates whether the stylus is located over this element (or over visual child elements that are inside its bounds).

public:
 property bool IsStylusOver { bool get(); };
public bool IsStylusOver { get; }
member this.IsStylusOver : bool
Public ReadOnly Property IsStylusOver As Boolean

Property Value

true if the stylus cursor is over the element or its child elements; otherwise, false.

Remarks

This interface is not intended for public implementation. For more information, see remarks for the IInputElement interface.

Some core classes that implement IInputElement, such as UIElement, also implement an event that tracks changes to this property. However, this interface does not include such an event as part of its contract.

Existing implementations in the Windows Presentation Foundation (WPF) core (see ContentElement.IsStylusOver and UIElement.IsStylusOver) establish this property as a dependency property.

Applies to

See also