Author Topic: vlax-dump-object to list  (Read 800 times)

0 Members and 1 Guest are viewing this topic.

domenicomaria

  • Swamp Rat
  • Posts: 725
vlax-dump-object to list
« on: December 20, 2021, 10:42:45 PM »
(setq d (vlax-dump-object (vlax-ename->vla-object (car (entsel) ) ) ) )

; IAcadBlockReference: AutoCAD Block Reference Interface
; Property values:
;   Application (RO) = #<VLA-OBJECT IAcadApplication 000000013f7b1e30>
;   Document (RO) = #<VLA-OBJECT IAcadDocument 000000002bc24cf8>
;   EffectiveName (RO) = "[db - PRINTED]"
;   EntityTransparency = "ByLayer"
;   Handle (RO) = "81284"
;   HasAttributes (RO) = -1
;   HasExtensionDictionary (RO) = -1
;   Hyperlinks (RO) = #<VLA-OBJECT IAcadHyperlinks 00000000435b18e8>
;   InsertionPoint = (2344.33 853.113 0.0)
;   InsUnits (RO) = "Millimeters"
;   InsUnitsFactor (RO) = 1.0
;   IsDynamicBlock (RO) = -1
;   Layer = "0"
;   Linetype = "ByLayer"
;   LinetypeScale = 1.0
;   Lineweight = -1
;   Material = "ByLayer"
;   Name = "*U963"
;   Normal = (0.0 0.0 1.0)
;   ObjectID (RO) = 44
;   ObjectName (RO) = "AcDbBlockReference"
;   OwnerID (RO) = 43
;   PlotStyleName = "Color_7"
;   Rotation = 5.97592
;   TrueColor = #<VLA-OBJECT IAcadAcCmColor 00000000435b1580>
;   Visible = -1
;   XEffectiveScaleFactor = 8.0
;   XScaleFactor = 8.0
;   YEffectiveScaleFactor = 8.0
;   YScaleFactor = 8.0
;   ZEffectiveScaleFactor = 8.0
;   ZScaleFactor = 8.0


The value of d is T

what should i do to put all the blue text in a list?

mhupp

  • Bull Frog
  • Posts: 250
Re: vlax-dump-object to list
« Reply #1 on: December 20, 2021, 10:57:31 PM »

domenicomaria

  • Swamp Rat
  • Posts: 725
Re: vlax-dump-object to list
« Reply #2 on: December 20, 2021, 11:07:48 PM »
Thank you very much.

There is much more than I could have imagined.

thank you again