Packageflash.text.engine
Classpublic final class TextBaseline
InheritanceTextBaseline Inheritance Object

Language Version : ActionScript 3.0
Player Version : Flash Player 10

The TextBaseline class is an enumeration of constant values to use in setting the dominantBaseline and alignmentBaseline properties of the ElementFormat class. You can also use it in the baselineZero argument of TextBlock.createTextLine(). Consider this situation:

The line consists of four TextElement objects, containing 'a', 'b', 'cccccccc', and 'X' respectivly. The line baselines are determined by the element containing 'X' because it is the largest element in the line. The roman baseline of the 'X' element is aligned with the roman baseline of the line. The ideographic top of the 'a' element is aligned with the ideographic top of the line. The ideographic bottom of the 'b' element is aligned with the ideographic bottom of the line. The ideographic center of the 'cccccccc' element is aligned with the ideographic center of the line.

See also

ElementFormat.dominantBaseline
ElementFormat.alignmentBaseline
TextBlock.createTextLine


Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  ASCENT : String = "ascent"
[static] Specifies an ascent baseline.
TextBaseline
  DESCENT : String = "descent"
[static] Specifies a descent baseline.
TextBaseline
  IDEOGRAPHIC_BOTTOM : String = "ideographicBottom"
[static] Specifies an ideographic bottom baseline.
TextBaseline
  IDEOGRAPHIC_CENTER : String = "ideographicCenter"
[static] Specifies an ideographic center baseline.
TextBaseline
  IDEOGRAPHIC_TOP : String = "ideographicTop"
[static] Specifies an ideographic top baseline.
TextBaseline
  ROMAN : String = "roman"
[static] Specifies a roman baseline.
TextBaseline
  SUBSCRIPT : String = "subscript"
[static] Specifies a sub script baseline.
TextBaseline
  SUPERSCRIPT : String = "superscript"
[static] Specifies a super script baseline.
TextBaseline
  USE_DOMINANT_BASELINE : String = "useDominantBaseline"
[static] Specifies that the alignmentBaseline should be the same as the dominantBaseline.
TextBaseline
Constant Detail
ASCENTConstant
public static const ASCENT:String = "ascent"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies an ascent baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric bottom of the element.

DESCENTConstant 
public static const DESCENT:String = "descent"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies a descent baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text element uses the geometric bottom of the element.

IDEOGRAPHIC_BOTTOMConstant 
public static const IDEOGRAPHIC_BOTTOM:String = "ideographicBottom"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies an ideographic bottom baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric bottom of the element.

IDEOGRAPHIC_CENTERConstant 
public static const IDEOGRAPHIC_CENTER:String = "ideographicCenter"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies an ideographic center baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric center of the element.

IDEOGRAPHIC_TOPConstant 
public static const IDEOGRAPHIC_TOP:String = "ideographicTop"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies an ideographic top baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric top of the element.

ROMANConstant 
public static const ROMAN:String = "roman"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies a roman baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric bottom of the element.

SUBSCRIPTConstant 
public static const SUBSCRIPT:String = "subscript"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies a sub script baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric bottom of the element.

SUPERSCRIPTConstant 
public static const SUPERSCRIPT:String = "superscript"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies a super script baseline. For a text element, this value is determined by the font and the point size of the text. For a graphic element, the text engine uses the geometric bottom of the element.

USE_DOMINANT_BASELINEConstant 
public static const USE_DOMINANT_BASELINE:String = "useDominantBaseline"

Language Version : ActionScript 3.0
Player Version : Flash Player 10

Specifies that the alignmentBaseline should be the same as the dominantBaseline. Use this value only to set ElementFormat.alignmentBaseline.