Mech:compdef-get-description
BricsCAD Mechanical関数 Home - BricsCADのLISP - AutoLISP Home - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Mech:compdef-get-description blkRefOrSolid)
- 機能
- blkRefOrSolid (ename)エンティティの説明テキストを取得する。
- 引数
-
- blkRefOrSolid : エンティティ名(BlockReference または 3dSolid)
- 戻り値
- 成功すれば T 、それ以外は nil
MEMO
- 戻り値は空文字も許容される。
- サンプル
(vl-load-mech) 1 (setq blkRefOrSolid (entlast)) <Entity name: 400b3440> (setq res (mech:compdef-get-description blkRefOrSolid)) "" (setq res (mech:compdef-set-description blkRefOrSolid "なにがあれしちゃうやつ")) T (setq res (mech:compdef-get-description blkRefOrSolid)) "なにがあれしちゃうやつ"
関連事項