Specifies the name of the big font file associated with the text or attribute.
Signature
object.BigFontFile
object TextStyle The object or objects this property applies to.
BigFontFile String; read-write The name of the big font file.
Remarks
This property is similar to the FontFile property, except it is used to specify an Asian-language big font file. [U]The only valid file type is SHX.[/U]This property cannot be set to NULL or an empty string.
Private Sub AcadDocument_BeginCommand(ByVal CommandName As String)
If (CommandName = "TEXT" Or CommandName = "MTEXT") And _
ThisDrawing.ActiveTextStyle.BigFontFile = "" And _
LCase(Right(ThisDrawing.ActiveTextStyle.fontFile, 4)) <> ".ttf" Then
ThisDrawing.ActiveTextStyle.fontFile = "c:\windows\fonts\SIMSUN.TTF"
End If