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