Mech:get-componentparameterstringvalue

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Mech:get-componentparameterstringvalue idBlockRef paramName )


機能
拘束条件付き idBlockRef BlockReference エンティティ(ename)のパラメータ paramName(string)のパラメータ文字列またはパラメータ式 を返す。


引数
  • idBlockRef : 問い合わせるBlockReferenceエンティティの ename
  • paramName : 「パラメータ式」に対して問い合わせるパラメータ名。


戻り値
パラメータparamName のパラメータ文字列または式



サンプル
(vl-load-mech)
2
(setq ent (car (entsel)))
<Entity name: a411e960>
(mech:get-componentparameterisstring ent "Size")
T
(mech:get-componentparameterstringvalue ent "Size")
".375-24 UNF"



関連事項