Message 1 of 3
Adding a balloon to a component within a sub assembly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
As the title says, I want to add a balloon to a part within a sub assembly.
I wrote the code below using the fragment code, but I get an error saying that the plate is a part within a sub assembly and cannot be found.
Does anyone know how to solve it?
Thank you in advance.
Dim Sheet_1 = ThisDrawing.Sheets.ItemByName("Sheet:1")
Dim VIEW1 = Sheet_1.DrawingViews.ItemByName("VIEW1")
Dim ptCyl = view1.SheetPoint(0, 0)
Dim balloon1 = Sheet_1.Balloons.Add("Plate:1 balloon", {ptCyl}, PointIntentEnum.kMidPointIntent)