明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1879|回复: 2

[求助]请高手分析:用VBA打印这个文件,打印的不是设好窗口的范围

[复制链接]
发表于 2009-12-3 07:57:00 | 显示全部楼层 |阅读模式


问题同上,代码如下。打印机选成你的机子上有的打印机,大家可试试。用同样的代码打印别的文件没问题。请高手分析原因。

Public Sub test()
    Dim pLayout As AcadLayout
    Dim minPnt(1) As Double
    Dim maxPnt(1) As Double
   
    Set pLayout = ThisDrawing.ActiveLayout
    
    minPnt(0) = 0: minPnt(1) = 0
    maxPnt(0) = 200: maxPnt(1) = 100
    pLayout.SetWindowToPlot minPnt, maxPnt
    pLayout.PlotType = acWindow
   
    ThisDrawing.Plot.DisplayPlotPreview acFullPreview
End Sub

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2010-10-19 15:13:00 | 显示全部楼层

Public Sub test()
    Dim pLayout As AcadLayout
    Dim minPnt(2) As Double
    Dim maxPnt(2) As Double
   
    Set pLayout = ThisDrawing.ActiveLayout
   
    minPnt(0) = 0: minPnt(1) = 0
    maxPnt(0) = 200: maxPnt(1) = 100

 

 


    Dim min_Pnt, max_Pnt As Variant
    min_Pnt = ThisDrawing.Utility.TranslateCoordinates(minPnt, 0, 3, False)
    max_Pnt = ThisDrawing.Utility.TranslateCoordinates(maxPnt, 0, 3, False)
    ReDim Preserve min_Pnt(0 To 1)
    ReDim Preserve max_Pnt(0 To 1)

 

 


    pLayout.SetWindowToPlot min_Pnt, max_Pnt
    pLayout.PlotType = acWindow
   
    ThisDrawing.Plot.DisplayPlotPreview acFullPreview
End Sub

回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2010-8-12 08:54:00 | 显示全部楼层

请大家试试,很奇怪,分析一下原因。

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 21:29 , Processed in 0.148911 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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