I created a macro That modify property of balloon object in CAT drawing but the problem I cant modify the Point property and it's line (see below )
myBalloon.Text = Right(myBalloon.Text, 3)
myBalloon.SetFontSize 0, 0, 2.5
myBalloon.FrameType = 0
Solution that I tried :
Dim myview As DrawingView
Set myview = CATIA.ActiveDocument.Sheets.ActiveSheet.Views.ActiveView
Dim mytext As DrawingText
Set mytext = myview.Texts.Item(1)
Dim myleader As DrawingLeader
Set myleader = mytext.Leaders.Item(1)
myleader.HeadSymbol = 0
This works only for 1 point is there away to modify the other points in that Activeview Anyone Can light me on this ?