Thanks for your assistance.
I tried your suggestion and got this far:
Command: (entget (car (entsel)))
Select object: ((-1 . <Entity name: 7ec9f778>) (0 . "MTEXT") (5 . "702AF")
(102
. "{ACAD_XDICTIONARY") (360 . <Entity name: 7ec9f780>) (102 . "}") (330 .
<Entity name: 7e358cc8>) (100 . "AcDbEntity") (67 . 0) (410 . "Model") (8 .
"S0ANNOT") (62 . 5) (48 . 0.125) (100 . "AcDbMText") (10 35.3658 460.221
3.66252e-292) (40 . 1.125) (41 . 0.0) (71 . 1) (72 . 5) (1 . "MK632") (7 .
"CT1") (210 0.0 0.0 1.0) (11 1.0 0.0 0.0) (42 . 4.56652) (43 . 1.17009) (50
.
0.0) (73 . 1) (44 . 1.0))
I want to figure out what the following would be.
FilterType(0) = ????
FilterData(0) = ????
The help file is where I started. This is the whole section:
FIELD group codes
Group code
Description
0
Object name (ACAD_FIELD)
1
Evaluator ID
2
Field code string
3
Overflow of field code string
4
Format string
300
Evaluation error message
90
Number of child fields
360
Child field ID (AcDbHardOwnershipId); repeats for number of children
91
Evaluation option
92
Filing option
94
Field state flag
95
Evaluation status
96
Evaluation error code
97
Number of object IDs used in the field code
330
Object ID used in the field code (AcDbSoftPointerId); repeats for the
number of object IDs used in the field code
93
Number of the data set in the field
6
Key string for the field data; a key-field pair is repeated for the
number of data sets in the field
7
Key string for the evaluated cache; this key is hard-coded as
ACFD_FIELD_VALUE
90
Data type of field value
91
Long value (if data type of field value is long)
140
Double value (if data type of field value is double)
330
ID value, AcDbSoftPointerId (if data type of field value is ID)
92
Binary data buffer size (if data type of field value is binary)
310
Binary data (if data type of field value is binary)
Post by TomDPost by DanI am now diving into DXF codes....LOOK OUT!
Been learning alot from this group, but could not find any info on this.
If
Post by Danyou know of a way, please enlighten me.
(entget (car (entsel)))
and select a FIELD object. What you see will be the DXF data in lisp
format, so to speak.