home *** CD-ROM | disk | FTP | other *** search
/ Enter 1998 December / ENTER12_1.iso / Dema / pwrproj / EXBORD.LIB / EXAMPLE1.B < prev    next >
Encoding:
Text File  |  1994-08-23  |  1.9 KB  |  88 lines

  1. // Border Size & Orientation
  2.  
  3. pagesize        A3,Landscape
  4. style           "Example A3 landscape"
  5.  
  6. // Thick Outer Frame
  7.  
  8. moveto          0,0
  9. fillto          width,1
  10. fillto          width-1,height-4
  11. fillto          0,height-5
  12. fillto          1,1
  13.  
  14. // Top Horizontal Division
  15.  
  16. moveto          1,20
  17. lineto          width-1,20
  18.  
  19. // Top Vertical Divides
  20.  
  21. moveto          40,1
  22. lineto          40,20
  23. moveto          width-40,1
  24. lineto          width-40,20
  25.  
  26. // Bottom Horizontal Division
  27.  
  28. moveto          1,height-9
  29. lineto          width-1,height-9
  30.  
  31.  
  32. // Bottom Vertical Divisions
  33.  
  34. moveto          width/4,height-5
  35. lineto          width/4,height-9
  36. moveto          width/2,height-5
  37. lineto          width/2,height-9
  38. moveto          width-width/4,height-5
  39. lineto          width-width/4,height-9
  40.  
  41. // Chart Location & Logos
  42.  
  43. moveto          1,20
  44. chartarea       width-1,height-9
  45.  
  46. moveto          2,2
  47. picture         "ACME.WMF",39,19
  48.  
  49. moveto          width-39,2
  50. picture         "ASTAART.WMF",width-2,19
  51.  
  52. // Text & Tokens
  53.  
  54. bold            on
  55. align           centre
  56. textsize        8
  57. moveto          width/2,8
  58. write           "<PROJ-TITLE>"
  59. textsize        4
  60. moveto          width/2,14
  61. write           "<CHART-SUBTITLE>"
  62. bold            off
  63. textsize        4
  64. moveto          width/2,19
  65. write           "<PROJ-FOR>"
  66. align           left
  67. moveto          41,19
  68. write           "<DATE>"
  69. align           right
  70. moveto          width-41,19
  71. write           "<PROJ-BY>"
  72. align           left
  73.  
  74. textsize        3
  75. moveto          2,height-6
  76. write           "Drawn by: <CHART-AUTHOR>"
  77. moveto          width/4+1,height-6
  78. write           "Dwg No. <CHART-PROGRAMME>"
  79. moveto          width/2+1,height-6
  80. write           "Revision No. <CHART-REVISION>"
  81. moveto          width-width/4+1,height-6
  82. write           "Notes: <CHART-COMMENT>"
  83.  
  84. textsize        3
  85. moveto          0,height-1
  86. write           "Project Ref. <PDB-FILENAME>"
  87.