ICustomKeyboardNavigationGetNext Method
Gets the next element in the specified navigation direction.
Namespace: Avalonia.InputAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
(bool handled, IInputElement next) GetNext(
IInputElement element,
NavigationDirection direction
)
Function GetNext (
element As IInputElement,
direction As NavigationDirection
) As (handled As Boolean, next As IInputElement)
abstract GetNext :
element : IInputElement *
direction : NavigationDirection -> ValueTuple<bool, IInputElement>
- element IInputElement
- The element being navigated from.
- direction NavigationDirection
- The navigation direction.
ValueTupleBoolean,
IInputElement
A tuple consisting of:
- A boolean indicating whether the request was handled. If false is returned then
custom navigation will be ignored and default navigation will take place.
- If handled is true: the next element in the navigation direction, or null if default
navigation should continue outside the element.