type property

String? type
getter/setter pair

How a text input field appears in the user interface.

For example, whether the field is single or multi-line. Possible string values are:

  • "SINGLE_LINE" : The text input field has a fixed height of one line.
  • "MULTIPLE_LINE" : The text input field has a fixed height of multiple lines.

Implementation

core.String? type;