WordWrapStyles 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.
Sets a bitwise combination of enumeration values to specify the word wrap style of an ITextView.
This enumeration supports a bitwise combination of its member values.
public enum class WordWrapStyles
public enum class WordWrapStyles
enum WordWrapStyles
[System.Flags]
public enum WordWrapStyles
[<System.Flags>]
type WordWrapStyles =
Public Enum WordWrapStyles
- Inheritance
-
WordWrapStyles
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Word wrap is disabled. |
WordWrap | 1 | Word wrap is enabled. |
VisibleGlyphs | 2 | If word wrap is enabled, use visible glyphs. |
AutoIndent | 4 | If word wrap is enabled, use auto-indent. |
Remarks
The VisibleGlyphs and AutoIndent bits will have no effect unless the WordWrap bit is also set.