找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 590|回复: 1

[他山之石] 用Lisp删除 named page setup

[复制链接]
发表于 2013-5-27 07:57:52 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

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

×
Deleting named page setup using Lisp                                                        By Balaji Ramamoorthy
Here is a Visual Lisp code to delete all the named page setup :
[pcode=lisp,true]
(defun C:DelPgSetups ( / appAcad colPgSetups docCurrent objPgSetup)
    (vl-load-com)
    ;get the ACAD application object
    (setq appAcad (vlax-get-acad-object))
    ;get the current drawing
    (setq docCurrent (vla-get-ActiveDocument appAcad))
    ;get the ACAD_PLOTSETTINGS dictionary
    (setq colPgSetups (vla-get-PlotConfigurations docCurrent))
    ; ask for confirmation before deleting
    (initget 1 "Y YES N NO")
    (setq answer
        (substr
            (getkword
                "\nThis will erase all the named page setups ?
                Do you want to continue ? [Yes/No]: "
            )
            1 1
        )
    )
    ; if ok, continue to delete all the named page setups
    (if (= answer "Y")
        (progn
            ;;get each page setup in the
            ;ACAD_PLOTSETTINGS dictionary
            (vlax-for objPgSetup colPgSetups
                (princ
                    (strcat "\nDeleting " (vla-get-name objPgSetup))
                )
                ;delete the page setup from the dictionary
                (vla-delete objPgSetup)
                ;release the page setup
                (vlax-release-object objPgSetup)
            );vlax-for
            (princ "\n\nDone.")
        )
    )
    ;;release objects from memory
    (vlax-release-object colPgSetups)
    (vlax-release-object docCurrent)
    (vlax-release-object appAcad)
    (princ)
);End of defun DelPgSetups
[/pcode]

评分

参与人数 1D豆 +5 收起 理由
牢固 + 5 很给力!经验;技术要点;资料分享奖!

查看全部评分

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 51个

财富等级: 招财进宝

发表于 2013-5-27 08:35:24 | 显示全部楼层
the named page setups, 中文准确的翻译应该是什么? 总感觉有些东西还是不要翻译的好。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

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

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-9-25 14:31 , Processed in 0.343578 second(s), 32 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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