| File: System\Drawing\StringAlignment.cs | Web Access |
| Project: src\winforms\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Drawing; /// <summary> /// Specifies the alignment of a text string relative to its layout rectangle. /// </summary> public enum StringAlignment { // left or top in English /// <summary> /// Specifies the text be aligned near the layout. In a left-to-right layout, the near position is left. In a /// right-to-left layout, the near position is right. /// </summary> Near = GdiPlus.StringAlignment.StringAlignmentNear, /// <summary> /// Specifies that text is aligned in the center of the layout rectangle. /// </summary> Center = GdiPlus.StringAlignment.StringAlignmentCenter, // right or bottom in English /// <summary> /// Specifies that text is aligned far from the origin position of the layout rectangle. In a left-to-right /// layout, the far position is right. In a right-to-left layout, the far position is left. /// </summary> Far = GdiPlus.StringAlignment.StringAlignmentFar }