「Gis:feature-get-layername」の版間の差分
(ページの作成:「{{BCAD_LISP_GIS}} ; 構文 : (gis:feature-get-layername ''featureId'' ) ; 機能 : featureId で指定した 'GIS フィーチャー' オブジェクトの 'GIS レイヤー' の名前を返す。 ; 引数 :* featureId: GISレイヤーを問い合わせる「GISフィーチャ」の「ハンドル」識別子の整数。 ; 戻り値 : 成功なら整数、そのほかは nil (型定数列挙 "Civil GIS Geometric Type "を参照)。 ====メモ==== * 返…」) |
編集の要約なし |
||
14行目: | 14行目: | ||
; 戻り値 | ; 戻り値 | ||
: | : 成功ならGISレイヤー名の文字列、そのほかは nil | ||
2025年4月18日 (金) 07:43時点における最新版
BricsCADのLISP - Civil-GIS関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (gis:feature-get-layername featureId )
- 機能
- featureId で指定した 'GIS フィーチャー' オブジェクトの 'GIS レイヤー' の名前を返す。
- 引数
-
- featureId: GISレイヤーを問い合わせる「GISフィーチャ」の「ハンドル」識別子の整数。
- 戻り値
- 成功ならGISレイヤー名の文字列、そのほかは 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-layername featureId) "SHP_3857_POINT_2D_UTF8"
関連事項