kitfang 发表于 2005-7-2 16:36:00

[求助]ARX如何设置打印参数?

<PRE class=Code>Sub Example_Plot()
    ' This example sends a plot of the current drawing
    ' to a file.
   
    ' Define the plot variable
    Dim currentPlot As ACADPlot
    Set currentPlot = ThisDrawing.Plot
   
    ' Define the output file name.
    ' Use "" to use the drawing name as the file name.
    ' Note: if the file name exists an error will be generated.
    Dim plotFileName As String
    plotFileName = "MyPlot"
   
    currentPlot.PlotToFile (plotFileName)
   
End Sub</PRE><PRE class=Code>请问如何在ARX中编写类似的程序??</PRE>
页: [1]
查看完整版本: [求助]ARX如何设置打印参数?