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 cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

GetBoundaryBox

Status
Not open for further replies.

man2007

Aerospace
Joined
Nov 6, 2007
Messages
283
Location
IN
Can someone let me know how to use GetBoundaryBox function of Drawing Dimension in Catia VBA?
 
Dim odim 'As DrawingDimension

Set odim = oview.Dimensions.Item(1)

Dim dimBB() As Variant

odim.GetBoundaryBox (dimBB)


but dimBB does not get info from GetBoundaryBox.... value still nothing.

odim is a catdimlength with single value in my case.

anyone else?

Eric N.
indocti discant et ament meminisse periti
 
ok my bad:

Dim dimBB(7) As Variant
odim.GetBoundaryBox dimBB

Eric N.
indocti discant et ament meminisse periti
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top