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

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「 {{BCAD_LISP_GIS}} ; 構文 : (gis:rename-layers) ; 機能 : 現在の図面の全ての 'GIS Layer' 名のリストを返す。 ; 引数 :* なし ; 戻り値 : 成功ならGIS Layer名の文字列リスト、それ以外は nil ; サンプル <pre class="brush: autolisp;"> (vl-load-gis) T (setq layers (gis:get-layers)) ("shp_3857_point_2d_utf8") </pre> ----- 関連事項 <div class="mcol2"> * Civil-gis関数-BricsCAD * gis:get-manager * gis…」)
 
編集の要約なし
 
1行目: 1行目:
{{BCAD_LISP_GIS}}
{{BCAD_LISP_GIS}}


; 構文
; 構文
: (gis:rename-layers)
: (gis:get-layers)





2025年4月16日 (水) 09:21時点における最新版

構文
(gis:get-layers)


機能
現在の図面の全ての 'GIS Layer' 名のリストを返す。


引数
  • なし


戻り値
成功ならGIS Layer名の文字列リスト、それ以外は nil


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

(setq layers (gis:get-layers))
("shp_3857_point_2d_utf8")



関連事項