Author Topic: Object names for selection sets  (Read 1894 times)

0 Members and 1 Guest are viewing this topic.

pjm8765

  • Guest
Object names for selection sets
« on: May 20, 2019, 05:27:18 AM »
I could have sworn I have seen a reference that lists all of the major object names that can be provided as a filter rule for a selection set:

Code: [Select]
typedArray.SetValue(new TypedValue((int)DxfCode.Start, "INSERT"), 0);

So, an INSERT is obviously a block reference ( :thinking:) and CIRCLE and LINE are also obvious.  But what about a dimension and the rest of the objects?  Any pointers, much appreciated.

Keith Brown

  • Swamp Rat
  • Posts: 601
Re: Object names for selection sets
« Reply #1 on: May 20, 2019, 09:07:52 AM »
I believe that you just use the DXFName.  That is the name that pops up when you List the object at the command line.
Keith Brown | AutoCAD MEP Blog | RSS Feed
AutoCAD MEP 2014 / Revit MEP 2014 / EastCoast CAD/CAM addon / Visual Studio 2013

huiz

  • Swamp Rat
  • Posts: 917
  • Certified Prof C3D
Re: Object names for selection sets
« Reply #2 on: May 20, 2019, 09:09:06 AM »
You can use the LIST command in AutoCAD to check the object DXF name.
The conclusion is justified that the initialization of the development of critical subsystem optimizes the probability of success to the development of the technical behavior over a given period.

huiz

  • Swamp Rat
  • Posts: 917
  • Certified Prof C3D
Re: Object names for selection sets
« Reply #3 on: May 20, 2019, 09:12:15 AM »
Here is a DXF Reference file:


https://images.autodesk.com/adsk/files/autocad_2012_pdf_dxf-reference_enu.pdf


Different objects are described from page 61.
The conclusion is justified that the initialization of the development of critical subsystem optimizes the probability of success to the development of the technical behavior over a given period.

pjm8765

  • Guest
Re: Object names for selection sets
« Reply #4 on: May 20, 2019, 10:50:51 AM »
Thanks very, that reference will come in very handy.