明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1861|回复: 4

VBA中范围打印命令是什么?

[复制链接]
发表于 2005-2-24 12:03:00 | 显示全部楼层 |阅读模式
VBA中有显示打印、根据图纸大小打印等,VBA中范围打印命令是什么?
发表于 2005-2-24 12:40:00 | 显示全部楼层

object.SetWindowToPlot(LowerLeft, UpperRight)

Object

MSITStore:D:\AutoCAD%202005\help\acadauto.chm::/idh_layout_object.htm" target="_blank" >Layout, MSITStore:D:\AutoCAD%202005\help\acadauto.chm::/idh_plotconfiguration_object.htm" target="_blank" >PlotConfiguration
The object or objects this method applies to.

LowerLeft

Variant (two-element array of doubles); input-only
The X and Y values for the lower-left window.

UpperRight

Variant (two-element array of doubles); input-only
The X and Y values for the upper-right window.

 楼主| 发表于 2005-2-24 20:54:00 | 显示全部楼层
可以加上注释吗?
 楼主| 发表于 2005-2-24 20:56:00 | 显示全部楼层
Private Sub CommandButton1_Click()
ThisDrawing.PaperSpace.Layout.ConfigName = "hp laserjet 1000"
' 到布局
If ThisDrawing.ActiveSpace = acModelSpace Then
ThisDrawing.ActiveSpace = acPaperSpace
ThisDrawing.MSpace = False
ZoomExtents
End If
'打印落在选定空间内的全部内容
ThisDrawing.PaperSpace.Layout.PlotType = acExtents
'设计为草图打印,不计比例
ThisDrawing.PaperSpace.Layout.StandardScale = acScaleToFit
' 设置打印份数为1
ThisDrawing.Plot.NumberOfCopies = a
' 开始打印
ThisDrawing.Plot.PlotToDevice
Unload UserForm8
' 到模型
If ThisDrawing.ActiveSpace = acPaperSpace Then
ThisDrawing.MSpace = True
ThisDrawing.ActiveSpace = acModelSpace
End If
End Sub
 楼主| 发表于 2005-2-25 21:25:00 | 显示全部楼层
如4楼程序所示,是我编的一个程序,启动CAD后,用程序画的第一个图,可以全图打印,删除此图,再次用程序划图,再次打印时,总是不能全图打印,是否如下语名有问题?

'打印落在选定空间内的全部内容
ThisDrawing.PaperSpace.Layout.PlotType = acExtents
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-27 20:30 , Processed in 0.162564 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表