awayjs-display
Version:
AwayJS displaylist classes
23 lines (21 loc) • 553 B
text/typescript
/**
* The TextFieldType class is an enumeration of constant values used in setting the
* <code>type</code> property of the TextField class.
*
* @see away.entities.TextField#type
*/
export class TextFieldType
{
/**
* Used to specify a <code>dynamic</code> TextField.
*/
public static DYNAMIC:string = "dynamic";
/**
* Used to specify an <code>input</code> TextField.
*/
public static INPUT:string = "input";
/**
* Used to specify an <code>static</code> TextField.
*/
public static STATIC:string = "input";
}