

Registered forum members do not see this ad.
Anyone know how to cycle through all layouts in a drawing using objectDBX??


Registered forum members do not see this ad.
Got it.
Code:Dim AcadDbx As AxDbDocument Dim AcadLay As AcadLayout Set AcadDbx = GetInterfaceObject("ObjectDBX.AxDbDocument.17") For Each AcadLay In AcadDbx.Layouts If AcadLay.Block.IsLayout Then "CODE HERE" End If Next
Bookmarks