-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathColumnDefinition.xml
149 lines (149 loc) · 8.64 KB
/
ColumnDefinition.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
<Type Name="ColumnDefinition" FullName="Microsoft.Maui.Controls.ColumnDefinition">
<TypeSignature Language="C#" Value="public sealed class ColumnDefinition : Microsoft.Maui.Controls.BindableObject, Microsoft.Maui.Controls.IDefinition, Microsoft.Maui.IGridColumnDefinition" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit ColumnDefinition extends Microsoft.Maui.Controls.BindableObject implements class Microsoft.Maui.Controls.IDefinition, class Microsoft.Maui.IGridColumnDefinition" />
<TypeSignature Language="DocId" Value="T:Microsoft.Maui.Controls.ColumnDefinition" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class ColumnDefinition
Inherits BindableObject
Implements IDefinition, IGridColumnDefinition" />
<TypeSignature Language="C++ CLI" Value="public ref class ColumnDefinition sealed : Microsoft::Maui::Controls::BindableObject, Microsoft::Maui::Controls::IDefinition, Microsoft::Maui::IGridColumnDefinition" />
<TypeSignature Language="F#" Value="type ColumnDefinition = class
 inherit BindableObject
 interface IDefinition
 interface IGridColumnDefinition" />
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Microsoft.Maui.Controls.BindableObject</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Microsoft.Maui.Controls.IDefinition</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Maui.IGridColumnDefinition</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>An <see cref="T:Microsoft.Maui.Controls.IDefinition" /> that defines properties for a column in a <see cref="T:Microsoft.Maui.Controls.Grid" />.</summary>
<remarks>
<example>
<para>The following example demonstrates setting three column widths to each of the three valid <see cref="T:Microsoft.Maui.GridUnitType" /> values:</para>
<code lang="XAML"><![CDATA[
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="100" />
</Grid.ColumnDefinitions>
]]></code>
</example>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ColumnDefinition ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ColumnDefinition.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 ColumnDefinition();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Creates a new <see cref="T:Microsoft.Maui.Controls.ColumnDefinition" /> object with default values.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ColumnDefinition (Microsoft.Maui.GridLength width);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(valuetype Microsoft.Maui.GridLength width) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Maui.Controls.ColumnDefinition.#ctor(Microsoft.Maui.GridLength)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (width As GridLength)" />
<MemberSignature Language="C++ CLI" Value="public:
 ColumnDefinition(Microsoft::Maui::GridLength width);" />
<MemberSignature Language="F#" Value="new Microsoft.Maui.Controls.ColumnDefinition : Microsoft.Maui.GridLength -> Microsoft.Maui.Controls.ColumnDefinition" Usage="new Microsoft.Maui.Controls.ColumnDefinition width" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="width" Type="Microsoft.Maui.GridLength" />
</Parameters>
<Docs>
<param name="width">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SizeChanged">
<MemberSignature Language="C#" Value="public event EventHandler SizeChanged;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler SizeChanged" />
<MemberSignature Language="DocId" Value="E:Microsoft.Maui.Controls.ColumnDefinition.SizeChanged" />
<MemberSignature Language="VB.NET" Value="Public Event SizeChanged As EventHandler " />
<MemberSignature Language="C++ CLI" Value="public:
 virtual event EventHandler ^ SizeChanged;" />
<MemberSignature Language="F#" Value="member this.SizeChanged : EventHandler " Usage="member this.SizeChanged : System.EventHandler " />
<MemberType>Event</MemberType>
<Implements>
<InterfaceMember>E:Microsoft.Maui.Controls.IDefinition.SizeChanged</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Width">
<MemberSignature Language="C#" Value="public Microsoft.Maui.GridLength Width { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Microsoft.Maui.GridLength Width" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ColumnDefinition.Width" />
<MemberSignature Language="VB.NET" Value="Public Property Width As GridLength" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Maui::GridLength Width { Microsoft::Maui::GridLength get(); void set(Microsoft::Maui::GridLength value); };" />
<MemberSignature Language="F#" Value="member this.Width : Microsoft.Maui.GridLength with get, set" Usage="Microsoft.Maui.Controls.ColumnDefinition.Width" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.TypeConverter(typeof(Microsoft.Maui.Controls.GridLengthTypeConverter))]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.TypeConverter(typeof(Microsoft.Maui.Controls.GridLengthTypeConverter))>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Maui.GridLength</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the width of the column.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WidthProperty">
<MemberSignature Language="C#" Value="public static readonly Microsoft.Maui.Controls.BindableProperty WidthProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class Microsoft.Maui.Controls.BindableProperty WidthProperty" />
<MemberSignature Language="DocId" Value="F:Microsoft.Maui.Controls.ColumnDefinition.WidthProperty" />
<MemberSignature Language="VB.NET" Value="Public Shared ReadOnly WidthProperty As BindableProperty " />
<MemberSignature Language="C++ CLI" Value="public: static initonly Microsoft::Maui::Controls::BindableProperty ^ WidthProperty;" />
<MemberSignature Language="F#" Value=" staticval mutable WidthProperty : Microsoft.Maui.Controls.BindableProperty" Usage="Microsoft.Maui.Controls.ColumnDefinition.WidthProperty" />
<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 <see cref="P:Microsoft.Maui.Controls.ColumnDefinition.Width" />.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>