Oct 9, 2008 #1 jrice174 Civil/Environmental Joined Nov 8, 2004 Messages 129 Location US In a VBA program, the last item I drew appears on top of an item I drew before that. Is there a way (other than changing the order that I draw them) of sending a LWPolyline to the back?
In a VBA program, the last item I drew appears on top of an item I drew before that. Is there a way (other than changing the order that I draw them) of sending a LWPolyline to the back?
Oct 10, 2008 #2 TCARPENTER1 Computer Joined Sep 22, 2005 Messages 234 Hi jrice174, Unfortunately, that's not an option in VB/VBA. You could change the elevation of your lines... sorry if that's no help Todd Upvote 0 Downvote
Hi jrice174, Unfortunately, that's not an option in VB/VBA. You could change the elevation of your lines... sorry if that's no help Todd
Oct 10, 2008 Thread starter #3 jrice174 Civil/Environmental Joined Nov 8, 2004 Messages 129 Location US Thanks for the info. It is appreciated. I changed the order that I drew them and that worked. Have a great day. Upvote 0 Downvote
Thanks for the info. It is appreciated. I changed the order that I drew them and that worked. Have a great day.
Oct 20, 2008 #4 AlexanderBausk Structural Joined Apr 7, 2008 Messages 1 Issue ThisDrawing.SendCommand "(ai_draworder ""_b"") " after placing your entity into active selection set. Upvote 0 Downvote
Issue ThisDrawing.SendCommand "(ai_draworder ""_b"") " after placing your entity into active selection set.