IKeyboardInputSite.OnNoMoreTabStops(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.
Called by a contained component when it has reached its last tab stop and has no further items to tab to.
public:
bool OnNoMoreTabStops(System::Windows::Input::TraversalRequest ^ request);
public bool OnNoMoreTabStops (System.Windows.Input.TraversalRequest request);
abstract member OnNoMoreTabStops : System.Windows.Input.TraversalRequest -> bool
Public Function OnNoMoreTabStops (request As TraversalRequest) As Boolean
Parameters
- request
- TraversalRequest
Specifies whether focus should be set to the first or the last tab stop.
Returns
If this method returns true
, the site has shifted focus to another component. If this method returns false
, focus is still within the calling component. The component should "wrap around" and set focus to its first contained tab stop.
Remarks
Components call OnNoMoreTabStops when the component attempts a requested focus move but there are no further tab stops in that direction within that own component.