Page.SetTabOrder Method

Definition

Overloads

SetTabOrder(BindableObject, VisualElement[])

Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.

SetTabOrder(IPlatformElementConfiguration<macOS,Page>, VisualElement[])

Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.

SetTabOrder(BindableObject, VisualElement[])

Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.

public:
 static void SetTabOrder(Microsoft::Maui::Controls::BindableObject ^ element, ... cli::array <Microsoft::Maui::Controls::VisualElement ^> ^ value);
public static void SetTabOrder (Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value);
static member SetTabOrder : Microsoft.Maui.Controls.BindableObject * Microsoft.Maui.Controls.VisualElement[] -> unit
Public Sub SetTabOrder (element As BindableObject, ParamArray value As VisualElement())

Parameters

element
BindableObject

The platform specific element on which to perform the operation.

value
VisualElement[]

An array of VisualElement.

Applies to

SetTabOrder(IPlatformElementConfiguration<macOS,Page>, VisualElement[])

Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::macOS ^, Microsoft::Maui::Controls::Page ^> ^ SetTabOrder(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::macOS ^, Microsoft::Maui::Controls::Page ^> ^ config, ... cli::array <Microsoft::Maui::Controls::VisualElement ^> ^ value);
public static Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page> SetTabOrder (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page> config, params Microsoft.Maui.Controls.VisualElement[] value);
static member SetTabOrder : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS, Microsoft.Maui.Controls.Page> * Microsoft.Maui.Controls.VisualElement[] -> Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS, Microsoft.Maui.Controls.Page>
<Extension()>
Public Function SetTabOrder (config As IPlatformElementConfiguration(Of macOS, Page), ParamArray value As VisualElement()) As IPlatformElementConfiguration(Of macOS, Page)

Parameters

config
IPlatformElementConfiguration<macOS,Page>

The platform specific configuration that contains the element on which to perform the operation.

value
VisualElement[]

An array of VisualElement.

Returns

The platform specific configuration that contains the element on which to perform the operation.

Applies to