Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
The following code allows me to enumerate all balloons on a specific drawing sheet:
Sub enumBalloons()
Dim oDoc As DrawingDocument
Set oDoc = ThisApplication.ActiveDocument
Dim oSheet As Sheet
Set oSheet = oDoc.ActiveSheet
Dim oBalloon As Balloon
For Each oBalloon in oSheet.Balloons
debug.print oBalloon.BalloonValueSets.Item(1).ItemNumber
Next
End Sub
But it ignores those balloons attached to other balloons as for example this type of balloons:
balloons attached to other balloons: how to access them?
Does anybody know how to access this specific type of balloons via API?
Solved! Go to Solution.