FindNextElementOptions.HintRect Property

Definition

Gets or sets a bounding rectangle used to identify the focus candidates most likely to receive navigation focus.

public:
 property Rect HintRect { Rect get(); void set(Rect value); };
Rect HintRect();

void HintRect(Rect value);
public Rect HintRect { get; set; }
var rect = findNextElementOptions.hintRect;
findNextElementOptions.hintRect = rect;
Public Property HintRect As Rect

Property Value

The bounding rectangle.

Remarks

Potential candidates are calculated using the bounding rectangle as reference. This rectangle lets you specify another reference instead of the focused element.

This rectangle is used only for calculations and is never added to the visual tree.

Applies to

See also