Vla-put-bigfontfile

提供:GizmoLabs - だいたい CAD LISP なサイト
2013年11月20日 (水) 12:07時点におけるGizmon (トーク | 投稿記録)による版
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(vla-put-bigfontfile vla-object fontname)


機能
文字または属性に関連付けられたビッグフォント ファイルの名前を設定する。


引数
  • vla-object … TextStyle の VLA オブジェクト
  • fontname … ビックフォント名の文字列


戻り値
nil


サンプル
(vl-load-com)
(setq *ActDoc* (vla-get-ActiveDocument (vlax-get-Acad-Object)))
(setq *stobj* (vla-get-textstyles *actdoc*))
(setq sty2 (vla-add *stobj* "俺用"))
(vla-put-fontfile sty2 "romans.shx")
(vla-put-bigfontfile sty2 "extfont.shx")


関連事項