Page.GetTabOrder Method

Definition

Overloads

GetTabOrder(BindableObject)

Returns the tab order of the visual elements on a page as array.

GetTabOrder(IPlatformElementConfiguration<macOS,Page>)

Returns the tab order of the visual elements on a page as array.

GetTabOrder(BindableObject)

Returns the tab order of the visual elements on a page as array.

public:
 static cli::array <Microsoft::Maui::Controls::VisualElement ^> ^ GetTabOrder(Microsoft::Maui::Controls::BindableObject ^ element);
public static Microsoft.Maui.Controls.VisualElement[] GetTabOrder (Microsoft.Maui.Controls.BindableObject element);
static member GetTabOrder : Microsoft.Maui.Controls.BindableObject -> Microsoft.Maui.Controls.VisualElement[]
Public Function GetTabOrder (element As BindableObject) As VisualElement()

Parameters

element
BindableObject

The platform specific element on which to perform the operation.

Returns

An array of VisualElement.

Applies to

GetTabOrder(IPlatformElementConfiguration<macOS,Page>)

Returns the tab order of the visual elements on a page as array.

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

Parameters

config
IPlatformElementConfiguration<macOS,Page>

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

Returns

An array of VisualElement.

Applies to