Jump to content

Recommended Posts

Posted

Hi,

My code

(setq ss1 (ssget "X"

'((0 . "INSERT")))

)

 

Using this i could collect all block object.

 

I need to collect blocks with attributes only.

Posted

thanks it works.

Now i could get the block .

How am i to retrieve the attribute value

Posted

Now i could get the block .

How am i to retrieve the attribute valu

Posted

Is it possible to get attribute of external ref block

Posted

This would print values to command line ...

 

(defun c:TesT (/ blk vla)
;;; Tharwat 22. Oct. 2011 ;;;
 (vl-load-com)
 (if (setq blk (ssget "_+.:s" '((0 . "INSERT") (66 . 1))))
   (progn
     (setq vla (vlax-ename->vla-object (ssname blk 0)))
     (foreach x (vlax-invoke vla "GetAttributes")
       (print (vla-get-textstring x))
     )
   )
   (princ)
 )
 (princ)
)

 

Tharwat

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...