Mech:set-componentparameterexpr
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Mech:set-componentparameterexpr idBlockRef paramName paramValue )
- 機能
- 拘束条件付き idBlockRef BlockReference エンティティ(ename)のパラメータ paramName(string)の文字列表現を返す。
- 引数
-
- idBlockRef : 設定する BlockReferenceエンティティの ename
- paramName : 設定するパラメータ名。
- paramValue : 「パラメータ式」の値
- 戻り値
- 成功ならT 、それ以外は nil
- サンプル
(vl-load-mech) 2 (setq ent (car (entsel))) <Entity name: a411e960> (setq res (mech:get-componentparameterexpr ent "Size")) ".375-24 UNF" (setq res (mech:set-componentparameterexpr ent "Size" ".500-13 UNC")) T (setq res (mech:get-componentparameterexpr ent "Size")) ".500-13 UNC"
関連事項