Hi,
May I know how can I programmatically rotate the TextVobject by using the Center point? just like how we drag @ the corner.
This is the code I am using now. Seems like no luck.
Code:4: If TypeOf obj Is Aurigma.GraphicsMill.WinControls.TextVObject Then
5: Dim point As New PointF(obj.GetVObjectBounds.Width / 2, obj.GetVObjectBounds.Height / 2)
6: obj.Transform.RotateAt(90, point)
7: obj.Update()
8: End If
Please advice.