「Gis:get-featureentities」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_GIS}} ; 構文 : (gis:get-featureentities''featureId'') ; 機能 : 現在の図面の、指定された 'GIS フィーチャー' featureId に属する全ての 'GIS entity' のリストを返す。 ; 引数 :* featureId : 関連するすべてのエンティティを問い合わせる 'GIS Feature' の整数ハンドル。 ; 戻り値 : 成功した場合は ENAME のリスト、失敗した場合はNIL ; サンプル <pre class="brush: autol…」)
 
編集の要約なし
 
2行目: 2行目:


; 構文
; 構文
: (gis:get-featureentities''featureId'')
: (gis:get-featureentities ''featureId'')




39行目: 39行目:
* [[gis:get-entities]]
* [[gis:get-entities]]
* [[gis:get-featureentities]]
* [[gis:get-featureentities]]
* [[gis:get-featureid]]
</div>
</div>


[[Category:AutoLISP]]
[[Category:AutoLISP]]
[[Category:BricsCADのLISP]]
[[Category:BricsCADのLISP]]

2025年4月17日 (木) 04:55時点における最新版

構文
(gis:get-featureentities featureId)


機能
現在の図面の、指定された 'GIS フィーチャー' featureId に属する全ての 'GIS entity' のリストを返す。


引数
  • featureId : 関連するすべてのエンティティを問い合わせる 'GIS Feature' の整数ハンドル。


戻り値
成功した場合は ENAME のリスト、失敗した場合はNIL


サンプル
(vl-load-gis)
T

(setq features (gis:get-features))  
(1685094904232 1685094904233)

(setq ents (gis:get-featureEntities (car features)))
(<Entity name: 6c8f9e20>)



関連事項