Allow text to wrap to a new line
Member of DropDown (PRIM_MD.Dropdown)
Data Type - Boolean
The Multiline property specifies whether the EditField supports multiline entry. When True, Enter will start a new line and text too long to fit in the available space will wrap on to a new line. By specifiying a layout Sizing of ContentHeight, the EditField will get longer as more text is entered.
In this example, the EditField will increase in length as more text is entered.
Begin_Com Role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME) Height(432) Width(1025) LayoutManager(#Layout1) Define_Com Class(#PRIM_TBLO) Name(#Layout1) Define_Com Class(#PRIM_TBLO.Row) Name(#Layout1Row1) DisplayPosition(1) Parent(#Layout1) Define_Com Class(#PRIM_TBLO.Column) Name(#Layout1Column1) DisplayPosition(1) Parent(#Layout1) Define_Com Class(#PRIM_TBLO.Item) Name(#Layout1Item1) Column(#Layout1Column1) Manage(#Edit1) Parent(#Layout1) Row(#Layout1Row1) Sizing(ContentHeight) Alignment(TopCenter) MarginTop(8) Define_Com Class(#PRIM_MD.Edit) Name(#Edit1) DisplayPosition(1) Label('Label') Left(366) Parent(#COM_OWNER) TabPosition(1) Top(8) Value('Abcdefghi') Width(293) MultiLine(True) Height(54) End_Com
Febuary 18 V14SP2