| File: System\Windows\Forms\Layout\LeftRightAlignment.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; /// <summary> /// Specifies whether an object or text is aligned to /// the left or /// right of a reference point. /// </summary> public enum LeftRightAlignment { /// <summary> /// The object or text is aligned to the left of the reference point. /// </summary> Left = 0, /// <summary> /// The object or text is aligned to the right of the reference point. /// </summary> Right = 1, }