Civil:pgroup-get-name

提供:GizmoLabs - だいたい CAD LISP なサイト
2024年11月21日 (木) 05:17時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Civil:pgroup-get-name ''groupNameOrEname'') ; 機能 : Returns the name of the specified C3D PointGroup groupEname. ; 引数 :* ''groupNameOrEname'' : グループ名を取得する 点グループエンティティのename。 ; 戻り値 : グループの名前 (文字列)、またはそのようなグループが存在しない場合は nil ; サンプル <pre class="brush: autolisp;"> (vl-load-civil) T (setq group (civ…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(Civil:pgroup-get-name groupNameOrEname)


機能
Returns the name of the specified C3D PointGroup groupEname.


引数
  • groupNameOrEname : グループ名を取得する 点グループエンティティのename。


戻り値
グループの名前 (文字列)、またはそのようなグループが存在しない場合は nil


サンプル
(vl-load-civil)
T
(setq group (civil:pgroups-get "_All points"))
<Entity name: 6df86cd0>
(setq res (civil:pgroup-get-name group))
"_All points"



関連事項