TextFormatFlags Enum

Definition

Specifies the display and layout information for text strings.

This enumeration supports a bitwise combination of its member values.

public enum class TextFormatFlags
[System.Flags]
public enum TextFormatFlags
[<System.Flags>]
type TextFormatFlags = 
Public Enum TextFormatFlags
Inheritance
TextFormatFlags
Attributes

Fields

Bottom 8

Aligns the text on the bottom of the bounding rectangle. Applied only when the text is a single line.

Default 0

Applies the default formatting, which is left-aligned.

EndEllipsis 32768

Removes the end of trimmed lines, and replaces them with an ellipsis. When used to draw text by TextRenderer, the string is not modified unless the ModifyString flag is specified. Compare with PathEllipsis and WordEllipsis.

ExpandTabs 64

Expands tab characters. The default number of characters per tab is eight. The WordEllipsis, PathEllipsis, and EndEllipsis values cannot be used with ExpandTabs.

ExternalLeading 512

Includes the font external leading in line height. Typically, external leading is not included in the height of a line of text.

GlyphOverhangPadding 0

Adds padding to the bounding rectangle to accommodate overhanging glyphs. This is the default.

HidePrefix 1048576

Ignores the ampersand (&) prefix character in the text, so that the letter that follows won't be underlined, but other mnemonic-prefix characters are still processed.

HorizontalCenter 1

Centers the text horizontally within the bounding rectangle.

Internal 4096

Uses the system font to calculate text metrics.

Left 0

Aligns the text on the left side of the clipping area. This is the default.

LeftAndRightPadding 536870912

Adds padding to both sides of the bounding rectangle.

ModifyString 65536

Has no effect on the drawn text or text measurements. When used to draw text by TextRenderer, modifies the specified string parameter to match the displayed text if ellipsis are shown. This value has no effect unless EndEllipsis or PathEllipsis is specified.

NoClipping 256

Allows the overhanging parts of glyphs and unwrapped text reaching outside the formatting rectangle to show.

NoFullWidthCharacterBreak 524288

A legacy value that has no effect. It prevents a line break at a double-wide character string, so that the line-breaking rule is equivalent to that for single-wide character strings.

NoPadding 268435456

Does not add padding to the bounding rectangle.

NoPrefix 2048

Turns off processing of prefix characters. Typically, the ampersand (&) mnemonic-prefix character is interpreted as a directive to underscore the character that follows, and the double-ampersand (&&) mnemonic-prefix characters as a directive to print a single ampersand. By specifying NoPrefix, this processing is turned off. For example, an input string of "A&bc&&d" with NoPrefix applied would result in output of "A&bc&&d". Compare with PrefixOnly.

PathEllipsis 16384

Removes the center of trimmed lines and replaces it with an ellipsis. When used to draw text by TextRenderer, the string is not modified unless the ModifyString flag is specified. Compare with EndEllipsis and WordEllipsis.

PrefixOnly 2097152

Draws only an underline at the position of the character following the ampersand (&) prefix character and doesn't draw any other characters in the string.

PreserveGraphicsClipping 16777216

Preserves the clipping specified by a Graphics object. Applies only to methods receiving an IDeviceContext that is a Graphics.

PreserveGraphicsTranslateTransform 33554432

Preserves the transformation specified by a Graphics. Applies only to methods receiving an IDeviceContext that is a Graphics.

Right 2

Aligns the text on the right side of the clipping area.

RightToLeft 131072

Displays the text from right to left.

SingleLine 32

Displays the text in a single line.

TextBoxControl 8192

Specifies the text should be formatted for display on a TextBox control.

Top 0

Aligns the text on the top of the bounding rectangle. This is the default.

VerticalCenter 4

Centers the text vertically, within the bounding rectangle.

WordBreak 16

Breaks the text at the end of a word.

WordEllipsis 262144

Trims the line to the nearest word and an ellipsis is placed at the end of a trimmed line. Compare with EndEllipsis and PathEllipsis.

Examples

The following example demonstrates how to use the TextFormatFlags enumeration. To run this example, paste the following code into a Windows Form. Call RenderText6 from the form's Paint event handler, passing e as PaintEventArgs.

private void RenderText6(PaintEventArgs e)
{
    TextFormatFlags flags = TextFormatFlags.Bottom | TextFormatFlags.EndEllipsis;
    TextRenderer.DrawText(e.Graphics, "This is some text that will be clipped at the end.", this.Font,
        new Rectangle(10, 10, 100, 50), SystemColors.ControlText, flags);
}
Private Sub RenderText6(ByVal e As PaintEventArgs)
    Dim flags As TextFormatFlags = TextFormatFlags.Bottom Or _
        TextFormatFlags.EndEllipsis
    TextRenderer.DrawText(e.Graphics, _
    "This is some text that will be clipped at the end.", _
    Me.Font, New Rectangle(10, 10, 100, 50), SystemColors.ControlText, flags)

End Sub

Remarks

The TextFormatFlags enumeration is used by the TextRenderer when drawing and measuring text. The TextRenderer does not support adding tab stops to drawn text, although you can expand existing tab stops using the ExpandTabs flag.

Applies to

See also