@awayjs/scene
Version:
AwayJS scene classes
27 lines • 827 B
TypeScript
/**
* The TextFormatAlign class provides values for text alignment in the
* TextFormat class.
*/
export declare class TextFormatAlign {
/**
* Constant; centers the text in the text field. Use the syntax
* <code>TextFormatAlign.CENTER</code>.
*/
static CENTER: string;
/**
* Constant; justifies text within the text field. Use the syntax
* <code>TextFormatAlign.JUSTIFY</code>.
*/
static JUSTIFY: string;
/**
* Constant; aligns text to the left within the text field. Use the syntax
* <code>TextFormatAlign.LEFT</code>.
*/
static LEFT: string;
/**
* Constant; aligns text to the right within the text field. Use the syntax
* <code>TextFormatAlign.RIGHT</code>.
*/
static RIGHT: string;
}
//# sourceMappingURL=TextFormatAlign.d.ts.map