「Gis:get-featuretype」の版間の差分
(ページの作成:「{{BCAD_LISP_GIS}} ; 構文 : (gis:get-featuretype ''featureId'') ; 機能 : GIS フィーチャー' featureId で指定されたフィーチャーの 'GIS フィーチャータイプ' を返す。 ; 引数 :* featureId : フィーチャータイプを問い合わせる 'GIS フィーチャー' の整数ハンドル。 ; 戻り値 : 成功なら 1から7の整数、それ以外は nil ; サンプル <pre class="brush: autolisp;"> (vl-load-gis) T (setq f…」) |
編集の要約なし |
||
42行目: | 42行目: | ||
* [[gis:get-featureid]] | * [[gis:get-featureid]] | ||
* [[gis:get-featuretype]] | * [[gis:get-featuretype]] | ||
</div> | </div> | ||
[[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
[[Category:BricsCADのLISP]] | [[Category:BricsCADのLISP]] |
2025年4月17日 (木) 05:04時点における版
BricsCADのLISP - Civil-GIS関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (gis:get-featuretype featureId)
- 機能
- GIS フィーチャー' featureId で指定されたフィーチャーの 'GIS フィーチャータイプ' を返す。
- 引数
-
- featureId : フィーチャータイプを問い合わせる 'GIS フィーチャー' の整数ハンドル。
- 戻り値
- 成功なら 1から7の整数、それ以外は nil
- サンプル
(vl-load-gis) T (setq features (gis:get-features)) (1685094904232 1685094904233) (setq featureType (gis:get-featureType (car features))) 1
関連事項