Set Text Generation Flag
 
 
 

The text generation flag specifies if the text is displayed backward or upside-down. To set the text generation flag, use the TextGenerationFlag property. To display the text backward, enter acTextFlagBackward for this property. To display the text upside-down, enter acTextFlagUpsideDown for this property. To display the text both backward and upside-down, add the two constants together by entering acTextFlagBackward+acTextFlagUpsidedown for this property.

Display text backward

This example creates a line of text, then sets it to be displayed backward using the TextGenerationFlag property.

Sub Ch4_ChangingTextGenerationFlag()
	Dim textObj As AcadText
	Dim textString As String
	Dim insertionPoint(0 To 2) As Double
	Dim height As Double


	' Create the text object
	textString = "Hello, World."
	insertionPoint(0) = 3
	insertionPoint(1) = 3
	insertionPoint(2) = 0
	height = 0.5
	Set textObj = ThisDrawing.ModelSpace. _
				AddText(textString, insertionPoint, height)


	' Change the value of the TextGenerationFlag
	textObj.TextGenerationFlag = acTextFlagBackward
	textObj.Update
End Sub

500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at webmaster@entercad.forsenergy.ru to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.