「Mech:instance-get-definitionid」の版間の差分
(ページの作成:「{{BCAD_LISP_MECH}} ; 構文 : (Mech:instance-get-definitionid ''idEnt'' ) ; 機能 : 指定された idEnt (ename) コンポーネントインスタンスの定義 BlockTableRecord の ename を返す。 ; 引数 :* idEnt : BlockReference または 3dSolid のエンティティ名 ; 戻り値 : InstanceDefinition を持つ BlockTableRecord(ename)、または nil ;サンプル <pre class="brush:autolisp;"> (vl-load-mech) 2 (setq blkRef (car (entsel))) <Ent…」) |
(相違点なし)
|
2023年6月12日 (月) 07:21時点における最新版
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Mech:instance-get-definitionid idEnt )
- 機能
- 指定された idEnt (ename) コンポーネントインスタンスの定義 BlockTableRecord の ename を返す。
- 引数
-
- idEnt : BlockReference または 3dSolid のエンティティ名
- 戻り値
- InstanceDefinition を持つ BlockTableRecord(ename)、または nil
- サンプル
(vl-load-mech) 2 (setq blkRef (car (entsel))) <Entity name: 7c8dea10> (setq res (mech:instance-get-definitionid blkRef)) <Entity name: 49f91130>
関連事項