home *** CD-ROM | disk | FTP | other *** search
/ Enter 1998 December / ENTER12_1.iso / Dema / pwrproj / EXBORD.LIB / EXAMPLE3.B < prev    next >
Encoding:
Text File  |  1994-08-24  |  504 b   |  36 lines

  1. // Border Size & Orientation
  2.  
  3. pagesize        a4,landscape
  4. style           "Example A4 Landscape"
  5.  
  6. // Background Image
  7.  
  8. moveto          0,0
  9. picture         "btelcltd.wmf",width,height
  10.  
  11. // Chart Frame
  12.  
  13. moveto          9,8
  14. boxto           width-103,height-8
  15.  
  16. // Chart Area
  17.  
  18. moveto          9,18
  19. chartarea       width-103,height-8
  20.  
  21. // Chart Title
  22.  
  23. align           centre
  24. bold            on
  25. textsize        9
  26. moveto          90,16
  27. write           "<chart-title>"
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.