33 references to IntTextFormatFlags
System.Windows.Forms (33)
winforms\Managed\System\WinForms\GDI\TextFormatFlags.cs (23)
31Bottom = IntTextFormatFlags.Bottom, 35EndEllipsis = IntTextFormatFlags.EndEllipsis, 36ExpandTabs = IntTextFormatFlags.ExpandTabs, 37ExternalLeading = IntTextFormatFlags.ExternalLeading, 38Default = IntTextFormatFlags.Default, 39HidePrefix = IntTextFormatFlags.HidePrefix, 40HorizontalCenter = IntTextFormatFlags.HorizontalCenter, 41Internal = IntTextFormatFlags.Internal, 42Left = IntTextFormatFlags.Left, // default 43ModifyString = IntTextFormatFlags.ModifyString, 44NoClipping = IntTextFormatFlags.NoClipping, 45NoPrefix = IntTextFormatFlags.NoPrefix, 46NoFullWidthCharacterBreak = IntTextFormatFlags.NoFullWidthCharacterBreak, 47PathEllipsis = IntTextFormatFlags.PathEllipsis, 48PrefixOnly = IntTextFormatFlags.PrefixOnly, 49Right = IntTextFormatFlags.Right, 50RightToLeft = IntTextFormatFlags.RightToLeft, 51SingleLine = IntTextFormatFlags.SingleLine, 54TextBoxControl = IntTextFormatFlags.TextBoxControl, 55Top = IntTextFormatFlags.Top, // default 56VerticalCenter = IntTextFormatFlags.VerticalCenter, 58WordBreak = IntTextFormatFlags.WordBreak, 59WordEllipsis = IntTextFormatFlags.WordEllipsis,
winforms\Managed\System\WinForms\GDI\TextRenderer.cs (4)
208private static IntTextFormatFlags GetIntTextFormatFlags(TextFormatFlags flags) 212return (IntTextFormatFlags) flags; 216IntTextFormatFlags windowsGraphicsSupportedFlags = (IntTextFormatFlags) ( ((uint)flags) & ~WindowsGraphics.GdiUnsupportedFlagMask );
winforms\Managed\System\WinForms\GroupBox.cs (6)
589IntTextFormatFlags flags = IntTextFormatFlags.WordBreak | IntTextFormatFlags.TextBoxControl; 592flags |= IntTextFormatFlags.HidePrefix; 596flags |= IntTextFormatFlags.RightToLeft; 597flags |= IntTextFormatFlags.Right;