Message 1 of 4
Text Style Vertical

Not applicable
01-10-2000
12:35 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I tell if a text style has the vertical flag set? I figured out I
can get Backwards, and upsidedown from the TextGenerationFlag value, but I
don't see any where to get the vertical setting.
This is a snip of what I am trying to do.
Sub test()
Dim textStyles As String
Dim TextEntry As AcadTextStyle
textStyles = ""
For Each TextEntry In ThisDrawing.textStyles
textStyles = textStyles + "textstyle" & "," & TextEntry.Name & "," &
TextEntry.fontFile & "," & _
TextEntry.Height & "," & TextEntry.Width & "," &
TextEntry.ObliqueAngle & "," & TextEntry.TextGenerationFlag & vbCrLf
'How do I get the vertical?
Next
MsgBox textStyles
End Sub
--
Kent Keller
Strobe Data Inc.
www.strobedata.com
Signs of the Times
LOG ON: Makin a wood stove hotter
can get Backwards, and upsidedown from the TextGenerationFlag value, but I
don't see any where to get the vertical setting.
This is a snip of what I am trying to do.
Sub test()
Dim textStyles As String
Dim TextEntry As AcadTextStyle
textStyles = ""
For Each TextEntry In ThisDrawing.textStyles
textStyles = textStyles + "textstyle" & "," & TextEntry.Name & "," &
TextEntry.fontFile & "," & _
TextEntry.Height & "," & TextEntry.Width & "," &
TextEntry.ObliqueAngle & "," & TextEntry.TextGenerationFlag & vbCrLf
'How do I get the vertical?
Next
MsgBox textStyles
End Sub
--
Kent Keller
Strobe Data Inc.
www.strobedata.com
Signs of the Times
LOG ON: Makin a wood stove hotter