| File: Interop\Richedit\Interop.PFM.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms.Primitives\src\System.Windows.Forms.Primitives.csproj (System.Windows.Forms.Primitives) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. internal partial class Interop { internal static partial class Richedit { [Flags] public enum PFM : uint { STARTINDENT = 0x00000001, RIGHTINDENT = 0x00000002, OFFSET = 0x00000004, ALIGNMENT = 0x00000008, TABSTOPS = 0x00000010, NUMBERING = 0x00000020, OFFSETINDENT = 0x80000000, SPACEBEFORE = 0x00000040, SPACEAFTER = 0x00000080, LINESPACING = 0x00000100, STYLE = 0x00000400, BORDER = 0x00000800, SHADING = 0x00001000, NUMBERINGSTYLE = 0x00002000, NUMBERINGTAB = 0x00004000, NUMBERINGSTART = 0x00008000, RTLPARA = 0x00010000, KEEP = 0x00020000, KEEPNEXT = 0x00040000, PAGEBREAKBEFORE = 0x00080000, NOLINENUMBER = 0x00100000, NOWIDOWCONTROL = 0x00200000, DONOTHYPHEN = 0x00400000, SIDEBYSIDE = 0x00800000, COLLAPSED = 0x01000000, OUTLINELEVEL = 0x02000000, BOX = 0x04000000, RESERVED2 = 0x08000000, TABLEROWDELIMITER = 0x10000000, TEXTWRAPPINGBREAK = 0x20000000, TABLE = 0x40000000, } } }