• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Visual Basic Customization

    Reply
    Valued Contributor
    Posts: 60
    Registered: ‎01-23-2009

    Trim

    93 Views, 3 Replies
    09-26-2012 02:21 AM

    How to trim the object using VB coding

     

     

     

    STM

    Please use plain text.
    Distinguished Contributor
    truss_85
    Posts: 131
    Registered: ‎02-13-2011

    Re: Trim

    09-26-2012 10:41 PM in reply to: thavasi1982

    There is no specific code for trimming.

    You can use send command to trim object.

    Please use plain text.
    Valued Contributor
    Posts: 60
    Registered: ‎01-23-2009

    Re: Trim

    09-27-2012 02:07 AM in reply to: thavasi1982

    Thanks for your reply.

     

    How to use sendcommand for crossing option as the crossing option does not accept co-ordinates. Instead it asks to pick a point on screen.I have attached a drawing, I have tried many ways to get the final output as you seen in the drawing but i cannot.

     

     

    STM

     

    Please use plain text.
    Member
    Posts: 3
    Registered: ‎05-09-2012

    Re: Trim

    09-27-2012 02:14 AM in reply to: thavasi1982

    Maybe an idea to get the objects, try to .IntersectWith and manually replace the last coordinate with the InterSect-Point? The last coordinate can be determined by the Clicked Points (I think you use GenEntity?)

     

    Util..getentity Object1, PickPoint1

    Util..getentity Object2, PickPoint2

     

    IntersectPoint=object1.IntersectWith (Object2,acExtendNone)

     

    IntersectPoint( [0-2] ) has the coordinates...

     

    Peter

    Please use plain text.