hiGetLayoutFrame
hiGetLayoutFrame(g_formRegionOrLayout[s_layoutName] ) =>t_title/t/nil
Description
Returns the frame title of a hiLayout form, a scroll region, or a tab page in the hiLayout form.
Arguments
|
A hiLayoutSymbol for a hiLayout contained within the form or region. If this argument is not specified, then the main hiLayout of the form or region is used. |
|
Value Returned
Examples
Returns nil because the layout is not a main layout.
hiGetLayoutFrame( MyForm )
=> nil
Returns nil because the layout is not a frame layout.
hiGetLayoutFrame( MyForm 'MyMainLayout )
=> nil
Returns the frame title, Frame.
hiGetLayoutFrame( MyForm 'MyTitleLayout )
=> "Frame"
Returns t because the frame, 'MyFrameLayout, has no title.
hiGetLayoutFrame( MyForm 'MyFrameLayout )
=>t
Related Topics
Return to top