• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    Posts: 21
    Registered: ‎12-18-2008

    preview AutoCad Map query

    94 Views, 3 Replies
    04-25-2012 11:50 PM

    how can I  query autocad map data in preview mode,and store these objects in a collection by using C#.

    (I want to use simple query like all lwpolyline having layer = "test" and color = 3). If I run this query in draw mode multiple times what will happen? (means possibilty of duplicate objects??)

     

    Thanks

    Murali

    Please use plain text.
    *Expert Elite*
    Posts: 6,417
    Registered: ‎06-29-2007

    Re: preview AutoCad Map query

    04-25-2012 11:57 PM in reply to: murali.pandey

    Hi,

     

    do you need any Map3D functionality like re-projection depending on different geo-coord-systems or something like saveback?

    If not I had much more luck replace the Map-query-functionality by my own routine, just

    • open the external database(s)
    • get the modelspace-blocktablerecord
    • scan it to get the objectid's matching the ObjectClass (DxfName of the Objecttype), if the objecttype is correct you can then check the other properties you want to compare
    • does the object match, collect it by saving handle and drawing-filename into an own list.

     

    - alfred -

    -------------------------------------------------------------------------
    Alfred NESWADBA
    Ingenieur Studio HOLLAUS ... www.hollaus.at
    -------------------------------------------------------------------------
    Please use plain text.
    Contributor
    Posts: 21
    Registered: ‎12-18-2008

    Re: preview AutoCad Map query

    04-26-2012 12:07 AM in reply to: alfred.neswadba

    I have to use map query only to show(preview) the quried data into the current drawing and do not want to do any type of editing in quried dwg. Before it I have to set the coordinate system say XYZ of the curent dwg.

     

     

    Thanks

    Murali

    Please use plain text.
    *Expert Elite*
    Posts: 6,417
    Registered: ‎06-29-2007

    Re: preview AutoCad Map query

    04-26-2012 12:13 AM in reply to: murali.pandey

    Hi,

     

    >> I have to use map query only to show(preview) the quried data into the current drawing

    E.g. use WorlDraw (or at least JIG without mouse-move-following) then, it's just a preview and not the adding to the database then.

     

    - alfred -

    -------------------------------------------------------------------------
    Alfred NESWADBA
    Ingenieur Studio HOLLAUS ... www.hollaus.at
    -------------------------------------------------------------------------
    Please use plain text.