hiGetLayoutFields
hiGetLayoutFields(g_formRegionOrLayout[s_layoutName] ) =>x_fields/nil
Description
Returns the list of symbolic names of field items in hiLayout.
Arguments
|
If it is a form or region and |
|
Values Returned
|
The list of symbolic names of the field items in the hiLayout |
|
|
Nil, if the symbolic names of the field items does not exist. |
Examples
Returns the symbolic names of field items, MyField1, MyField2, and MyField3 from the layout, MySubLayout.
hiGetLayoutFields( MyForm ) ;; returns fields contained in MyMainLayout
=> nil
hiGetLayoutFields( MyForm 'MySubLayout )
=> MyField1 MyField2 MyField3
Related Topics
Return to top