ObliqueAngle property example
Sub ObliqueAngle_Example()
    Dim sText As String: sText = "Test string for ObliqueAngle property"
    Dim insPt(0 To 2) As Double: insPt(0) = 0: insPt(1) = 9
    Dim dHeight As Double: dHeight = 5
    Dim textObj As AcadText
    Set textObj = ThisDrawing.ModelSpace.AddText(sText, insPt, dHeight)
    textObj.Update
    ThisDrawing.Application.ZoomExtents
    MsgBox "The ObliqueAngle is " & textObj.ObliqueAngle
    
    textObj.ObliqueAngle = 0.785
    textObj.Update
    ThisDrawing.Application.ZoomExtents
    MsgBox "The ObliqueAngle is set to " & textObj.ObliqueAngle
End Sub
| ©  Menhirs NV. All rights reserved. |