| File: LayoutAlignment.cs | Web Access |
| Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
using System; namespace Microsoft.Maui.Controls { /// <include file="../../docs/Microsoft.Maui.Controls/LayoutAlignment.xml" path="Type[@FullName='Microsoft.Maui.Controls.LayoutAlignment']/Docs/*" /> [Flags] public enum LayoutAlignment { /// <include file="../../docs/Microsoft.Maui.Controls/LayoutAlignment.xml" path="//Member[@MemberName='Start']/Docs/*" /> Start = 0, /// <include file="../../docs/Microsoft.Maui.Controls/LayoutAlignment.xml" path="//Member[@MemberName='Center']/Docs/*" /> Center = 1, /// <include file="../../docs/Microsoft.Maui.Controls/LayoutAlignment.xml" path="//Member[@MemberName='End']/Docs/*" /> End = 2, /// <include file="../../docs/Microsoft.Maui.Controls/LayoutAlignment.xml" path="//Member[@MemberName='Fill']/Docs/*" /> Fill = 3 } }