ContentElement.MoveFocus(TraversalRequest) Method
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.
Attempts to move focus from this element to another element. The direction to move focus is specified by a guidance direction, which is interpreted within the organization of the visual parent for this element.
public:
virtual bool MoveFocus(System::Windows::Input::TraversalRequest ^ request);
public virtual bool MoveFocus (System.Windows.Input.TraversalRequest request);
abstract member MoveFocus : System.Windows.Input.TraversalRequest -> bool
override this.MoveFocus : System.Windows.Input.TraversalRequest -> bool
Public Overridable Function MoveFocus (request As TraversalRequest) As Boolean
Parameters
- request
- TraversalRequest
A traversal request, which contains a property that indicates either a mode to traverse in existing tab order, or a direction to move visually.
Returns
true
if the requested traversal was performed; otherwise, false
.
Remarks
Make sure you check the return value of this method. A return value of false
might be returned if the traversal runs into a tab stop that is defined by a control's composition, and the traversal request did not request to wrap.