The TextFieldAutoSize class is an enumeration of constant values used in setting the autoSize property of the TextField class.

Variables

@:value(cast 0)@:impl@:enuminlineread onlyCENTER:TextFieldAutoSize = 0

Specifies that the text is to be treated as center-justified text. Any resizing of a single line of a text field is equally distributed to both the right and left sides.

@:value(cast 1)@:impl@:enuminlineread onlyLEFT:TextFieldAutoSize = 1

Specifies that the text is to be treated as left-justified text, meaning that the left side of the text field remains fixed and any resizing of a single line is on the right side.

@:value(cast 2)@:impl@:enuminlineread onlyNONE:TextFieldAutoSize = 2

Specifies that no resizing is to occur.

@:value(cast 3)@:impl@:enuminlineread onlyRIGHT:TextFieldAutoSize = 3

Specifies that the text is to be treated as right-justified text, meaning that the right side of the text field remains fixed and any resizing of a single line is on the left side.