本帖最后由 vectra 于 2022-3-9 09:52 编辑
 - (setq $op-output-directory
- (vlax-ldata-get
- "OneClickPlot2"
- "OutputDirectory"
- ""
- )
- )
- (setq rt (getstring
- (strcat "输入打印文件保存目录 <" $op-output-directory ">:")
- )
- )
- (if (not (null rt))
- (progn
- (setq $op-output-directory rt)
- (vlax-ldata-put
- "OneClickPlot2"
- "OutputDirectory"
- $op-output-directory
- )
- )
- )
|