Mech:compdef-get-filepath

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Mech:compdef-get-filepath blkRefOrSolid)


機能
blkRefOrSolid (ename)エンティティで参照される(外部)コンポーネントの定義(ルートコンポーネントとして定義されている場合)を含む dwg ファイルへのパスを返す。


引数
  • blkRefOrSolid : 照会するエンティティ名(BlockReference または 3dSolid)


戻り値
成功した場合はファイルパス(文字列)、それ以外は nil


MEMO

  • 戻り値は空文字も許容される。


サンプル
(vl-load-mech)
1
(setq blkRefOrSolid (entlast))
<Entity name: 400b19a0>
(setq res (mech:compdef-get-filepath blkRefOrSolid))
"D:\\MY_omponents\\box_component.dwg"



関連事項