NChartLineBreakMode Enumeration |
The LineBreakMode enum provides constants to indicate behavior when a line is too long for its container.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public enum NChartLineBreakMode
Public Enumeration NChartLineBreakMode
public enum class NChartLineBreakMode
Members
| Member name | Value | Description |
---|
| None | 0 |
Line is not drawn past the edge of the text container.
|
| CharWrap | 1 |
Wrapping occurs before the first character that does not fit.
|
| WordWrap | 2 |
Wrapping occurs before the first word that does not fit.
|
| TruncateHead | 3 |
The line is displayed so that it fits in the container and the missing text at the beginning of the line is replaced by an ellipsis glyph.
|
| TruncateTail | 4 |
The line is displayed so that it fits in the container and the missing text at the end of the line is replaced by an ellipsis glyph.
|
| TruncateMiddle | 5 |
The line is displayed so that it fits in the container and the missing text in the middle is replaced by an ellipsis glyph.
|
See Also