/** * The TextFieldType class is an enumeration of constant values used in setting the * type property of the TextField class. * * @see away.entities.TextField#type */ export class TextFieldType { /** * Used to specify a dynamic TextField. */ public static DYNAMIC:string = "dynamic"; /** * Used to specify an input TextField. */ public static INPUT:string = "input"; /** * Used to specify an static TextField. */ public static STATIC:string = "input"; }