Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
The BreakOpportunity class is an enumeration of constant values that you can use to set the
breakOpportunity
property
of the ElementFormat class.
This property determines which characters can be used for breaking when wrapping text is broken into multiple lines.
public static const ALL:String = "all"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Treats all characters in the ContentElement object as mandatory line break opportunities.
You can use this option to generate the shortest possible lines,
which you can use to create text on a line or similar effects.
public static const ANY:String = "any"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Treats any character in the ContentElement object as a line break opportunity.
This value is typically used when Roman text is embedded in Asian text and it is desirable for breaks to happen
in the middle of words.
public static const AUTO:String = "auto"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Bases line break opportunities on Unicode character properties. This setting implements
the Unicode line breaking properties defined by the Unicode Standard Annex #14.
See also
public static const NONE:String = "none"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Treats no characters in the ContentElement object as line break opportunities.