/** * The TextFormatAlign class provides values for text alignment in the * TextFormat class. */ export class TextFormatAlign { /** * Constant; centers the text in the text field. Use the syntax * TextFormatAlign.CENTER. */ public CENTER:string = "center"; /** * Constant; justifies text within the text field. Use the syntax * TextFormatAlign.JUSTIFY. */ public JUSTIFY:string = "justify"; /** * Constant; aligns text to the left within the text field. Use the syntax * TextFormatAlign.LEFT. */ public LEFT:string = "left"; /** * Constant; aligns text to the right within the text field. Use the syntax * TextFormatAlign.RIGHT. */ public RIGHT:string = "right"; }