home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 18 / amigaformatcd18.iso / mui / mui_developer / autodocs / mui_rectangle.doc < prev    next >
Text File  |  1997-03-10  |  2KB  |  62 lines

  1. TABLE OF CONTENTS
  2.  
  3. Rectangle.mui/Rectangle.mui
  4. Rectangle.mui/MUIA_Rectangle_BarTitle
  5. Rectangle.mui/MUIA_Rectangle_HBar
  6. Rectangle.mui/MUIA_Rectangle_VBar
  7. Rectangle.mui/Rectangle.mui
  8.  
  9.     Rectangle class seems kind of useless since it
  10.     doesn't define any attributes or methods itself.
  11.     However, objects of this type are frequently
  12.     used in every application. They allow insertion
  13.     of space to control MUI's layout process.
  14. Rectangle.mui/MUIA_Rectangle_BarTitle
  15.  
  16.     NAME
  17.     MUIA_Rectangle_BarTitle -- (V11) [I.G], STRPTR
  18.  
  19.     FUNCTION
  20.     This attribute describes a text string which will be displayed
  21.     in group title style centered in the rectangle. Really only
  22.     makes sense for MUIA_Rectangle_HBar type objects.
  23.  
  24.     SEE ALSO
  25.     MUIA_Rectangle_HBar
  26. Rectangle.mui/MUIA_Rectangle_HBar
  27.  
  28.     NAME
  29.     MUIA_Rectangle_HBar -- (V7 ) [I.G], BOOL
  30.  
  31.     FUNCTION
  32.     When set to TRUE, MUI draws a horizontal bar in the middle of the
  33.     rectangle. Such bars can be used instead of group frames to
  34.     seperate objects in a window.
  35.  
  36.     EXAMPLE
  37.     /* draw a two pixel high bar in the middle
  38.            of an 8 pixel high rectangle */
  39.  
  40.     RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixHeight, 8, End;
  41.  
  42.     SEE ALSO
  43.     MUIA_Rectangle_VBar
  44. Rectangle.mui/MUIA_Rectangle_VBar
  45.  
  46.     NAME
  47.     MUIA_Rectangle_VBar -- (V7 ) [I.G], BOOL
  48.  
  49.     FUNCTION
  50.     When set to TRUE, MUI draws a vertical bar in the middle of the
  51.     rectangle. Such bars can be used instead of group frames to
  52.     seperate objects in a window.
  53.  
  54.     EXAMPLE
  55.     /* draw a two pixel wide bar in the middle
  56.            of an 8 pixel wide rectangle */
  57.  
  58.     RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixWidth, 8, End;
  59.  
  60.     SEE ALSO
  61.     MUIA_Rectangle_HBar
  62.