Vla-put-textfontstyle

提供:GizmoLabs - だいたい CAD LISP なサイト
2016年2月6日 (土) 22:32時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{AutoLISP}} ; 構文 : (vla-put-textfontstyle ''vla-object'' ''style'' ) ; 機能 : 新しい文字のフォント スタイルを指定する。 ; 引数 :* vla-ob...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(vla-put-textfontstyle vla-object style )


機能
新しい文字のフォント スタイルを指定する。


引数
  • vla-object … PreferencesDisplay のVLAオブジェクト
  • style … acTextFontStyle 列挙型
  • acFontRegular
  • acFontItalic
  • acFontBold
  • acFontBoldItalic


戻り値
nil


  • このプロパティの初期値は acFontRegular。


サンプル
(vl-load-com)
(defun c:Example_TextFontStyle()
    ;; TextFontStyle を変更するサンプル。
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; 現在の TextFontStyle 値
    (setq currTextFontStyle (vla-get-TextFontStyle (vla-get-Display preferences)))
    (setq constant (cond
                       ((= currTextFontStyle acFontRegular) "acFontRegular")
                       ((= currTextFontStyle acFontItalic) "acFontItalic")
                       ((= currTextFontStyle acFontBold) "acFontBold")
                       ((= currTextFontStyle acFontBoldItalic) "acFontBoldItalic")
                   ))
  
    (alert (strcat "現在の TextFontStyle は " constant))
    
    ;; 変更
    (vla-put-TextFontStyle (vla-get-Display preferences) acFontBoldItalic)
    (setq newTextFontStyle (vla-get-TextFontStyle (vla-get-Display preferences)))
    (setq newConstant (cond
                       ((= newTextFontStyle acFontRegular) "acFontRegular")
                       ((= newTextFontStyle acFontItalic) "acFontItalic")
                       ((= newTextFontStyle acFontBold) "acFontBold")
                       ((= newTextFontStyle acFontBoldItalic) "acFontBoldItalic")
                   ))
    (alert (strcat "新しい TextFontStyle は " newConstant))
    
    ;; Reset TextFontStyle to its original value
    (vla-put-TextFontStyle (vla-get-Display preferences) currTextFontStyle)
    (alert (strcat "TextFontStyle を次に戻しました " constant))
)


関連事項