-
Notifications
You must be signed in to change notification settings - Fork 6
/
Page.xml
160 lines (160 loc) · 13.3 KB
/
Page.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<Type Name="Page" FullName="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page">
<TypeSignature Language="C#" Value="public static class Page" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit Page extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page" />
<TypeSignature Language="VB.NET" Value="Public Module Page" />
<TypeSignature Language="C++ CLI" Value="public ref class Page abstract sealed" />
<TypeSignature Language="F#" Value="type Page = class" />
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>The page instance that Microsoft.Maui.Controls created on the macOS platform.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="GetTabOrder">
<MemberSignature Language="C#" Value="public static Microsoft.Maui.Controls.VisualElement[] GetTabOrder (Microsoft.Maui.Controls.BindableObject element);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Maui.Controls.VisualElement[] GetTabOrder(class Microsoft.Maui.Controls.BindableObject element) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.BindableObject)" />
<MemberSignature Language="VB.NET" Value="Public Function GetTabOrder (element As BindableObject) As VisualElement()" />
<MemberSignature Language="C++ CLI" Value="public:
 static cli::array <Microsoft::Maui::Controls::VisualElement ^> ^ GetTabOrder(Microsoft::Maui::Controls::BindableObject ^ element);" />
<MemberSignature Language="F#" Value="static member GetTabOrder : Microsoft.Maui.Controls.BindableObject -> Microsoft.Maui.Controls.VisualElement[]" Usage="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder element" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.VisualElement[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="element" Type="Microsoft.Maui.Controls.BindableObject" />
</Parameters>
<Docs>
<param name="element">The platform specific element on which to perform the operation.</param>
<summary>Returns the tab order of the visual elements on a page as array.</summary>
<returns>An array of VisualElement.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetTabOrder">
<MemberSignature Language="C#" Value="public static Microsoft.Maui.Controls.VisualElement[] GetTabOrder (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page> config);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Maui.Controls.VisualElement[] GetTabOrder(class Microsoft.Maui.Controls.IPlatformElementConfiguration`2<class Microsoft.Maui.Controls.PlatformConfiguration.macOS, class Microsoft.Maui.Controls.Page> config) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder(Microsoft.Maui.Controls.IPlatformElementConfiguration{Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page})" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function GetTabOrder (config As IPlatformElementConfiguration(Of macOS, Page)) As VisualElement()" />
<MemberSignature Language="C++ CLI" Value="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);" />
<MemberSignature Language="F#" Value="static member GetTabOrder : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS, Microsoft.Maui.Controls.Page> -> Microsoft.Maui.Controls.VisualElement[]" Usage="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.GetTabOrder config" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.VisualElement[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="config" Type="Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page>" RefType="this" />
</Parameters>
<Docs>
<param name="config">The platform specific configuration that contains the element on which to perform the operation.</param>
<summary>Returns the tab order of the visual elements on a page as array.</summary>
<returns>An array of VisualElement.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetTabOrder">
<MemberSignature Language="C#" Value="public static void SetTabOrder (Microsoft.Maui.Controls.BindableObject element, params Microsoft.Maui.Controls.VisualElement[] value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void SetTabOrder(class Microsoft.Maui.Controls.BindableObject element, class Microsoft.Maui.Controls.VisualElement[] value) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.BindableObject,Microsoft.Maui.Controls.VisualElement[])" />
<MemberSignature Language="VB.NET" Value="Public Sub SetTabOrder (element As BindableObject, ParamArray value As VisualElement())" />
<MemberSignature Language="C++ CLI" Value="public:
 static void SetTabOrder(Microsoft::Maui::Controls::BindableObject ^ element, ... cli::array <Microsoft::Maui::Controls::VisualElement ^> ^ value);" />
<MemberSignature Language="F#" Value="static member SetTabOrder : Microsoft.Maui.Controls.BindableObject * Microsoft.Maui.Controls.VisualElement[] -> unit" Usage="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder (element, value)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="element" Type="Microsoft.Maui.Controls.BindableObject" />
<Parameter Name="value" Type="Microsoft.Maui.Controls.VisualElement[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="element">The platform specific element on which to perform the operation.</param>
<param name="value">An array of VisualElement.</param>
<summary>Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetTabOrder">
<MemberSignature Language="C#" 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);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Maui.Controls.IPlatformElementConfiguration`2<class Microsoft.Maui.Controls.PlatformConfiguration.macOS, class Microsoft.Maui.Controls.Page> SetTabOrder(class Microsoft.Maui.Controls.IPlatformElementConfiguration`2<class Microsoft.Maui.Controls.PlatformConfiguration.macOS, class Microsoft.Maui.Controls.Page> config, class Microsoft.Maui.Controls.VisualElement[] value) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder(Microsoft.Maui.Controls.IPlatformElementConfiguration{Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page},Microsoft.Maui.Controls.VisualElement[])" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function SetTabOrder (config As IPlatformElementConfiguration(Of macOS, Page), ParamArray value As VisualElement()) As IPlatformElementConfiguration(Of macOS, Page)" />
<MemberSignature Language="C++ CLI" Value="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);" />
<MemberSignature Language="F#" 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>" Usage="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.SetTabOrder (config, value)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="config" Type="Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.macOS,Microsoft.Maui.Controls.Page>" RefType="this" />
<Parameter Name="value" Type="Microsoft.Maui.Controls.VisualElement[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="config">The platform specific configuration that contains the element on which to perform the operation.</param>
<param name="value">An array of VisualElement.</param>
<summary>Sets the tab order of visual elements on a page. Users can cycle through these elements with the tab key.</summary>
<returns>The platform specific configuration that contains the element on which to perform the operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TabOrderProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty TabOrderProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty TabOrderProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly TabOrderProperty As BindableProperty " />
<MemberSignature Language="C++ CLI" Value="public: static initonly Microsoft::Maui::Controls::BindableProperty ^ TabOrderProperty;" />
<MemberSignature Language="F#" Value=" staticval mutable TabOrderProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.PlatformConfiguration.macOSSpecific.Page.TabOrderProperty" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Maui.Controls.BindableProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Bindable property for attached property <c>TabOrder</c>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>