Results 1 to 9 of 9

Thread: attribute dxf codes

  1. #1
    I could stop if I wanted to
    Join Date
    2006-04
    Posts
    466
    Login to Give a bone
    0

    Default attribute dxf codes

    What are the attribute DXF codes for:

    -backwards

    -upside down

    -width factor

    -oblique angle

    -linetype

    -lineweight

    -visability

    ?
    Last edited by aaronic_abacus; 2017-06-25 at 06:05 AM.

  2. #2
    I could stop if I wanted to
    Join Date
    2006-04
    Posts
    466
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    ok I found 70 for visability

  3. #3
    All AUGI, all the time
    Join Date
    2010-06
    Posts
    962
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Hi,

    Have a close look
    HERE

  4. #4
    I could stop if I wanted to
    Join Date
    2006-04
    Posts
    466
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Thanks Tharwat!

    trying to get all the options for EATTEDIT

    like upsidedown or backwards
    Last edited by aaronic_abacus; 2017-06-25 at 08:51 AM.

  5. #5
    All AUGI, all the time
    Join Date
    2010-06
    Posts
    962
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Quote Originally Posted by aaronic_abacus View Post
    Thanks Tharwat!

    trying to get all the options for EATTEDIT

    like upsidedown or backwards
    You are most welcome . Good luck.

  6. #6
    All AUGI, all the time
    Join Date
    2003-07
    Posts
    555
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Try this bit of code look at dump you can get at the variables and set them here. The rem out line is for setting default values of the block.

    Code:
    (setq adoc (vla-get-activedocument (vlax-get-acad-object))) 
    (setq obj  (vlax-ename->vla-object (car (entsel "pick a block"))))
    (setq bname (vla-get-name obj))
    (SETQ LST '())
    (vlax-for block (vla-get-blocks adoc) 
    (if (=   (vla-get-name block) bname) 
    (vlax-for ent block 
    (IF (=  (vla-GET-OBJECTNAME ent ) "AcDbAttributeDefinition") 
    ;(SETQ LST (CONS (VLA-GET-TEXTSTRING ent ) LST))
    (vlax-dump-object ent)
    )
    )
    )
    )

  7. #7
    I could stop if I wanted to
    Join Date
    2006-04
    Posts
    466
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Thanks to your encouragement I found

    upside down and , backwards(71); widthfactor(41); obliqueangle(51); and visibility(70)
    I'm still looking for line weight and line type and what's annotative?

    well I did find linetype to be (6), but can fonts display line types?
    Last edited by aaronic_abacus; 2017-11-06 at 12:49 PM.

  8. #8
    I could stop if I wanted to
    Join Date
    2006-04
    Posts
    466
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Thanks again Tharwat, I've gained an understanding of justification through this link.

    http://docs.autodesk.com/ACD/2011/EN...2e719-7a31.htm
    Last edited by aaronic_abacus; 2018-01-09 at 07:01 PM.

  9. #9
    All AUGI, all the time
    Join Date
    2010-06
    Posts
    962
    Login to Give a bone
    0

    Default Re: attribute dxf codes

    Quote Originally Posted by aaronic_abacus View Post
    Thanks again Tharwat, I've gained an understanding of justification through this link.

    http://docs.autodesk.com/ACD/2011/EN...2e719-7a31.htm
    You are welcome anytime.

    I think its the same link that I have posted in reply#3

Similar Threads

  1. Replies: 13
    Last Post: 2012-09-18, 07:51 PM
  2. ACAD Mech 07 - Double-click Attribute to open editor on selected Attribute
    By svanderputten in forum AutoCAD Mechanical - General
    Replies: 5
    Last Post: 2012-01-25, 06:08 PM
  3. How can I get BS CODES
    By annie123 in forum Revit Structure - General
    Replies: 2
    Last Post: 2010-02-10, 08:25 AM
  4. Block Attribute Manager Vs. Enhanced Attribute Editor
    By zoomharis in forum AutoCAD General
    Replies: 0
    Last Post: 2006-04-15, 11:53 AM
  5. UL Codes
    By BCrouse in forum ACA Wish List
    Replies: 1
    Last Post: 2005-10-16, 08:40 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •