Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

GetBodies

Status
Not open for further replies.

EngProgrammer

Aerospace
Joined
Jan 14, 2015
Messages
150
Location
US
I am looking for a function that will get me the main body of the workpart. There is only one body in the workpart. Then I want to get all the faces associated with that body.

any ideas?
 
Code:
Dim theBody As Body
If workPart.Bodies.ToArray.Length > 0 Then
    'there is at least one body
    theBody = workPart.Bodies.ToArray(0)
Else
    'no bodies in part
    MsgBox("no bodies in work part")
End If

www.nxjournaling.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top