Inserting Indexed Children in a BorderLayout

To insert indexed children in a borderLayout:

Note: Indexed children are arranged consecutively in the middle of a borderLayout container, in the order in which they are listed.

Example (UIX XML)


...
<pageLayout>
  
  <!-- Insert indexed child components -->
  
  <contents>
    <borderLayout> 
      <contents>
        <styledText text="Here is some content" /> 
      </contents>
      <bottom> 
        <image/> 
      </bottom> 
      <innerBottom/> 
      <innerLeft/> 
      <innerRight/> 
      <innerTop/> 
      <left/>
      <right/> 
      <top/> 
    </borderLayout> 
  </contents>
  
  <!-- REST OF PAGE LAYOUT -->
  
</pageLayout>
...    

About BorderLayout and its Named Children

Inserting a Component in a Named Area Using BorderLayout
Working with Layout Components

 

Copyright © 1997, 2004, Oracle. All rights reserved.