Gis:feature-get-entities
BricsCADのLISP - Civil-GIS関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (gis:feature-get-entities featureId )
- 機能
- featureId で指定した 'GIS フィーチャー' オブジェクトのエンティティを返す。
- 引数
-
- featureId:エンティティを問い合わせる「GISフィーチャ」の「ハンドル」識別子の整数。
- 戻り値
- 成功なら ename、そのほかは nil
- サンプル
(vl-load-gis) T (setq layers (gis:get-layers)) ("shp_3857_point_2d_utf8") (setq name (car layers)) "shp_3857_point_2d_utf8" (setq layerId (gis:get-layer name)) 1736983018068 (setq features (gis:layer-get-features layerId)) (1685094904232 1685094904233) (setq featureId (car features)) 1685094904232 (gis:feature-get-entities featureId) (<Entity name: 5616ae40>)
関連事項