首页 > 其他 > 详细

关于剪切板操作的三个函数

时间:2020-03-10 23:56:32      阅读:125      评论:0      收藏:0      [点我收藏+]

(defun ClearClipBoard ()
  (startapp "cmd /c \"echo off | clip\"")
)                                        ; (clearclipboard)

(defun _SetClipBoardText (text / htmlfile result)
  ;;  Caller‘s sole responsibility is to pass a
  ;;  text string. Anything else? Pie in face.

  ;;  Attribution: Reformatted version of
  ;;  post by XShrimp at theswamp.org.
  ;;
  ;;  See <a href=\"http://tinyurl.com/2ngf4r.\" target=\"_blank\">http://tinyurl.com/2ngf4r.</a>

  (setq        result
         (vlax-invoke
           (vlax-get
             (vlax-get
               (setq htmlfile (vlax-create-object "htmlfile"))
               ‘ParentWindow
             )
             ‘ClipBoardData
           )
           ‘SetData
           "Text"
           text
         )
  )
  (vlax-release-object htmlfile)
  text
)                                        ;( _SetClipBoardText "testing")

(defun _GetClipBoardText (/ htmlfile result)
  ;;  Attribution: Reformatted version of
  ;;  post by Patrick_35 at theswamp.org.
  ;;
  ;;  See <a href=\"http://tinyurl.com/2ngf4r.\" target=\"_blank\">http://tinyurl.com/2ngf4r.</a>
  (setq        result
         (vlax-invoke
           (vlax-get
             (vlax-get
               (setq htmlfile (vlax-create-object "htmlfile"))
               ‘ParentWindow
             )
             ‘ClipBoardData
           )
           ‘GetData
           "Text"
         )
  )
  (vlax-release-object htmlfile)
  result
)                                        ;(setq test (_GetClipBoardText))

 

关于剪切板操作的三个函数

原文:https://www.cnblogs.com/mjgw/p/12459495.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!