「Civil:pgroup-get-name」の版間の差分
(ページの作成:「{{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…」) |
(相違点なし)
|
2024年11月21日 (木) 05:17時点における最新版
- 構文
- (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"
関連事項