Click or drag to resize
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
Members
  Member nameValueDescription
None0 Line is not drawn past the edge of the text container.
CharWrap1 Wrapping occurs before the first character that does not fit.
WordWrap2 Wrapping occurs before the first word that does not fit.
TruncateHead3 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.
TruncateTail4 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.
TruncateMiddle5 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