Bim:get-assignedprofile

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Bim:get-assignedprofile ent)


機能
指定されたエンティティ(Ename または VlaObject)に割り当てられたプロファイルを返す。


引数
  • ent : プロファイルを取得するエンティティ(Ename または VlaObject)


戻り値
割り当てられているプロファイルを"Standard:Name:Size "形式の文字列で返す。割り当てられていない場合、nil または "::" が返る。
サンプル
(vl-load-bim)
(setq ent (car (entsel)))
(bim:get-assignedprofile ent)
"JIS:H:344x354x16x16"

(bim:get-assignedprofile ent)
"::"

関連事項