21 references to StringFormatFlags
PresentationUI (1)
MS\Internal\Documents\SignatureSummaryDialog.cs (1)
636
stringFormat.FormatFlags =
StringFormatFlags
.DirectionRightToLeft;
System.Drawing (1)
System.Drawing.cs (1)
151
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.
StringFormatFlags
))]
System.Drawing.Common (7)
System\Drawing\StringFormat.cs (7)
27
/// Initializes a new instance of the <see cref='StringFormat'/> class with the specified <see cref='
StringFormatFlags
'/>.
29
public StringFormat(
StringFormatFlags
options) : this(options, 0)
35
/// <see cref='
StringFormatFlags
'/> and language.
37
public StringFormat(
StringFormatFlags
options, int language)
102
/// Gets or sets a <see cref='
StringFormatFlags
'/> that contains formatting information.
104
public
StringFormatFlags
FormatFlags
108
StringFormatFlags
format;
System.Windows.Forms (9)
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.LayoutOptions.cs (2)
51
public
StringFormatFlags
GdiPlusFormatFlags { get; set; }
85
format.FormatFlags |=
StringFormatFlags
.NoWrap;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
482
format.FormatFlags |=
StringFormatFlags
.DirectionRightToLeft;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (2)
671
format.FormatFlags |=
StringFormatFlags
.DirectionRightToLeft;
676
format.FormatFlags |=
StringFormatFlags
.NoWrap;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1591
StringFormat stringFormat = new(
StringFormatFlags
.NoWrap)
System\Windows\Forms\Rendering\ControlPaint.cs (3)
2607
stringFormat.FormatFlags |=
StringFormatFlags
.DirectionRightToLeft;
2613
stringFormat.FormatFlags |=
StringFormatFlags
.LineLimit;
2631
stringFormat.FormatFlags |=
StringFormatFlags
.MeasureTrailingSpaces;
System.Windows.Forms.Design (3)
System\Drawing\Design\FontNameEditor.cs (2)
74
StringFormat format = new(
StringFormatFlags
.NoWrap |
StringFormatFlags
.NoFontFallback)
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
871
stringFormat = rightToLeft ? new(
StringFormatFlags
.DirectionRightToLeft) : new();