Click or drag to resize
CanvasLineBreakCondition Enumeration
Describes conditions at the edges of inline objects that determine line-breaking behavior.

Namespace:  Microsoft.Graphics.Canvas.Text
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasLineBreakCondition
Members
  Member nameValueDescription
Neutral0Indicates that breaks are determined by the neighboring text span or inline object.
CanBreak1Indicates that breaks are allowed, unless overruled by the neighboring text span or inline object: either prohibited by a CannotBreak or forced by a MustBreak.
CannotBreak2Indicates that there should be no line break, unless overruled by a MustBreak from the neighboring text span or inline object.
MustBreak3Indicates that a line break must happen, regardless of anything else.
See Also