「Vle-compile-shape」の版間の差分
(ページの作成:「{{BCAD_LISP}} ; 構文 : (vle-compile-shape ''shapefile'') ; 機能 : 指定されたシンボルフォントファイル 'shapefile' を .shp から .shx 形式にコ…」) |
編集の要約なし |
||
34行目: | 34行目: | ||
[[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
[[Category:BricsCADのLISP]] |
2023年1月28日 (土) 07:59時点における最新版
- 構文
- (vle-compile-shape shapefile)
- 機能
- 指定されたシンボルフォントファイル 'shapefile' を .shp から .shx 形式にコンパイルする。
- 引数
-
- shapefile : shp ファイルのパス
- 戻り値
- コンパイルされた .shx ファイルの名前,コンパイルに失敗した場合は nil
MEMO
- パス指定がない場合は、(findfile) と同様に SupportPaths シーケンスで検索される。
- .shx ファイルは常に入力 .shp ファイルと同じフォルダーに生成される。
- サンプル
(vle-compile-shape "c:\\font\\myfont.shp") "c:\\font\\myfont.shx"
関連事項