TextFont 属性 (ActiveX) 
指定新文本的字体。 支持的平台:仅限 Windows 属性值只读:不 类型:字符串 新字体的名称。 言论此属性的初始值为 Courier。 例子VBA: Sub Example_TextFont()
    ' This example returns the current setting of
    ' TextFont. It then changes the value, and finally
    ' it resets the value back to the original setting.
    
    Dim preferences As AcadPreferences
    Dim currTextFont As String
    
    Set preferences = ThisDrawing.Application.Preferences
    
    ' Retrieve the current TextFont value
    currTextFont = preferences.Display.TextFont
    MsgBox "The current value for TextFont is " & preferences.Display.TextFont, vbInformation, "TextFont Example"
    
    ' Change the value for TextFont
    preferences.Display.TextFont = "TestTextFont"
    MsgBox "The new value for TextFont is " & preferences.Display.TextFont, vbInformation, "TextFont Example"
    
    ' Reset TextFont to its original value
    preferences.Display.TextFont = currTextFont
    MsgBox "The TextFont value is reset to " & preferences.Display.TextFont, vbInformation, "TextFont Example"
End Sub
可视化 LISP: (vl-load-com)
(defun c:Example_TextFont()
    ;; This example returns the current setting of
    ;; TextFont. It then changes the value, and finally
    ;; it resets the value back to the original setting.
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; Retrieve the current TextFont value
    (setq currTextFont (vla-get-TextFont (vla-get-Display preferences)))
    (alert (strcat "The current value for TextFont is " currTextFont))
    
    ;; Change the value for TextFont
    (vla-put-TextFont (vla-get-Display preferences) "TestTextFont")
    (alert (strcat "The new value for TextFont is " (vla-get-TextFont (vla-get-Display preferences))))
    
    ;; Reset TextFont to its original value
    (vla-put-TextFont (vla-get-Display preferences) currTextFont)
    (alert (strcat "The TextFont value is reset to " (vla-get-TextFont (vla-get-Display preferences))))
)
 | 
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1   苏公网安备32011402011833)
GMT+8, 2025-11-4 14:07
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.