- Public Sub VendorA()
- Call SetupAndPlot("11x17Draft.pc3", "STANDARDS.ctb", "Business_Letter_(8.50_x_11.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub Vendor1117()
- Call SetupAndPlot("11x17Draft.pc3", "11X17-CHECKSET.ctb", "ANSI_B_(11.00_x_17.00_Inches)", acScaleToFit, ac90degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub VendorQuickPlotC()
- Call SetupAndPlot("OCE DesignJet 750C.pc3", "VENDOR MEDIUM.ctb", "ARCH_expand_C_(24.00_x_18.00_Inches)", acScaleToFit, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub VendorQuickPlotD()
- Call SetupAndPlot("OCE DesignJet 750C.pc3", "VENDOR MEDIUM.ctb", "ARCH_expand_D_(36.00_x_24.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub TEPQuickPlot11x17()
- Call SetupAndPlot("11x17Draft.pc3", "11X17-CHECKSET.ctb", "ANSI_B_(11.00_x_17.00_Inches)", acScaleToFit, ac90degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub TEPQuickPlotC()
- Call SetupAndPlot("OCE DesignJet 750C.pc3", "tep.ctb", "ARCH_expand_C_(24.00_x_18.00_Inches)", acScaleToFit, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub TEPQuickPlotD()
- Call SetupAndPlot("OCE DesignJet 750C.pc3", "tep.ctb", "ARCH_expand_D_(36.00_x_24.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub TEP9800D()
- Call SetupAndPlot("OCE 9800 DesignJet 750C.pc3", "tep.ctb", "ARCH_expand_D_(36.00_x_24.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub TEPDWFD() 'Setups for C size and 11x17 do not exist, need to be created.
- Call SetupAndPlot("DWF6 ePlot.pc3", "tep.ctb", "ARCH_full_bleed_D_(36.00_x_24.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
- End Sub
- Public Sub VENDORDWFD() 'Setups for C size and 11x17 do not exist, need to be created.
- Call SetupAndPlot("DWF6 ePlot.pc3", "VENDOR MEDIUM.ctb", "ARCH_full_bleed_D_(36.00_x_24.00_Inches)", ac1_1, ac0degrees)
- ThisDrawing.Plot.PlotToDevice
- ThisDrawing.Close (True)
既然它们都是独立的,你会保持原样还是试着压缩 ;所有这些都在同一个VBA模块中