dimension arrow size

Discussion in 'AutoCAD' started by cadder1, Jan 28, 2004.

  1. cadder1

    cadder1 Guest

    I wanted to set DIMASZ to .1 in any drawing when open. I added this line along with other codes in my acad.lsp.
    (command "dimasz" ".1") yet I still get DIMASZ =1. Is there a simpler way of doing this.
    Thanks
     
    cadder1, Jan 28, 2004
    #1
  2. cadder1

    Walt Engle Guest

    You probably have to change the ".1" to "0.1"
     
    Walt Engle, Jan 28, 2004
    #2
  3. cadder1

    Doug Broad Guest

    It should work either way. Cadder's example works on my
    system. In general it affects only the current parent style.

    If you have a separate dimasz set for linear dimensions then
    this technique won't affect the linear dimasz. For that reason,
    I avoid setting size variables in child dimstyles.

    This also should not affect existing dimensions. Entering
    such statements acts as an override for future dimensions
    unless you use (command "dim1" "save"...)

    Using templates would probably be a better choice than
    using lisp upon opening in any case.

    Regards,
    Doug
    WinXP Pro, Acad2004/ADT
     
    Doug Broad, Jan 28, 2004
    #3
  4. cadder1

    Gaston Nunez Guest

    DIMASZ it's a real variable so to set it to 0.1 you have to use: (setvar
    "dimasz" 0.1)

    -gnb

    along with other codes in my acad.lsp.
     
    Gaston Nunez, Jan 28, 2004
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.