FindNextElementOptions.HintRect Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.