BufferFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Flags for configuring buffer behavior during text shaping.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum BufferFlags
- Inheritance
-
BufferFlags
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| Default | 0 | The default buffer flags with no special behavior. |
| BeginningOfText | 1 | Indicates that the buffer represents the beginning of the text. |
| EndOfText | 2 | Indicates that the buffer represents the end of the text. |
| PreserveDefaultIgnorables | 4 | Preserve default ignorable characters in the output. |
| RemoveDefaultIgnorables | 8 | Remove default ignorable characters from the output. |
| DoNotInsertDottedCircle | 16 | Do not insert dotted circle glyph for invalid character sequences. |