AltFontFile Property
IntelliCAD 11.1 Object Library | |
AltFontFile Property | |
See Also |
PreferencesFiles Object : AltFontFile Property |
Description
Sets or returns the alternat font file to be used.
Property type
Read-write property
Syntax
Visual Basic |
---|
Public Property AltFontFile As String |
Example
Private Sub AltFontFile_Example()
Dim myobj As ApplicationPreferences
Dim myfontfile As String
Set myobj = IntelliCAD.Preferences
myfontfile = myobj.AltFontFile
MsgBox "The alternate font file is: " & myfontfile
End Sub