GetBoundaryBox
GetBoundaryBox
(OP)
Can someone let me know how to use GetBoundaryBox function of Drawing Dimension in Catia VBA?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: GetBoundaryBox
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?
indocti discant et ament meminisse periti
RE: GetBoundaryBox
Dim dimBB(7) As Variant
odim.GetBoundaryBox dimBB
indocti discant et ament meminisse periti
RE: GetBoundaryBox
I was looking for a macro for the following thread and finally able to get it
http://www.eng-tips.com/viewthread.cfm?qid=391940