首先在命令行中键入LD,如果加载了它,您将看到它在命令行中打开或关闭。
现在打开LayerDirector。lsp文件,并根据需要编辑顶部部分,如下所示
- (defun LM:LayerDirector nil (vl-load-com)
- (setq *LayerData*
- '(
- ("*TEXT" "M-ANNO" 7)
- ("*DIM*,*QLEADER" "M-DIMS" 7)
- ("*VPORT*" "M-VIEW" 42)
- ("*MVIEW*" "M-VIEW" 42)
- ("*MLEA*" "M-ANNO" 7) ;mleader
- ("*NEWOR*" "M-ANNO" 7) ;newwork custom command
- ("RAY*" "XLINE" 201) ;
- ("*REV*" "M-ANNO" 7) ;revcloud
- ("*TABL*" "M-ANNO" 7) ;table
- ("*WIPEO*" "M-VIEW" 251) ;wipeout
- ("*XATT*, *WFATT*" "XREF" 7) ;xref attach
- ("*XLIN*" "XLINE" 201) ;xline
- ("*XL*" "XLINE" 201) ;xline
- ("*HATC*" "M-PATT" ;bhatch hatch
- )
- )
- (
|