Defines the visual component to be managed
Member of Flow Layout Item (PRIM_FWLI)
Data Type - PRIM_CTRL - Base class for all visual controls
Reference to the control that will be manipulated by the layout item. The IDE will manage layout definition through the use of the designer. This code is provided for reference purposes.
Simple flow layout with 3 fields flowing down the page.
Define_Com Class(#PRIM_FWLM) Name(#FlowLayout1) Direction(TopToBottom) Define_Com Class(#PRIM_FWLI) Name(#FlowLayoutItem2) Manage(#Field1) Parent(#FlowLayout1) Define_Com Class(#PRIM_FWLI) Name(#FlowLayoutItem1) Manage(#Field2) Parent(#FlowLayout1) Define_Com Class(#PRIM_FWLI) Name(#FlowLayoutItem3) Manage(#Field3) Parent(#FlowLayout1)
Febuary 18 V14SP2