Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Text Height Standardization

  1. #1
    Active Member
    Join Date
    2007-02
    Posts
    61
    Login to Give a bone
    0

    Default Text Height Standardization

    How are you all dealing with automating/standardizing text heights? Have you a way to link text height with dimscale or are you setting up different text styles for each scale within templates? Anybody using annotative capabilities and how is that working for you?

    M
    Last edited by mazmier631911; 2008-01-03 at 09:21 PM. Reason: Added to

  2. #2
    Certified AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    5,069
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    Once upon a time. I wrote a series of commands to set text heights, styles, and layers based on LeRoy equivalents. Typing in "L100" would set the text style LeRoy100 current, forcing the height to be 0.0875 * the plotting scale if in Modelspace, and * 1 if in Paperspace, with a custom font developed to mimic LeRoy characters and to be identical between uStn and Acad. Layers were automagically set to NCS annotative layers, and color for that layer set to company standards. For 100 LeRoy equivalents, that would be C-ANNO-L100 and yellow. th font was close to RomanS, with some modifications for visual clarity and to get the same results in both supported CAD platforms.

    Nowadays, I leave my style defined with height 0, and simply set the text height to what I need to display. Easier to do on the fly in civil, since it's just multiplying by a simple scale factor like 10 or 30 instead of 96. Since my employer is staying with 2006, annotative is not an option yet (and given the way acad hardwired default scales and forced rampant propogation of scales in the dwg files, that may be a good thing)

  3. #3
    I could stop if I wanted to
    Join Date
    2004-11
    Location
    Altoona,PA
    Posts
    301
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    You could use tool palette commands, allowing you you to set the textsize then initiate the mtext command - see attached image.

    you can create a tool for each textsize......

    you can also set various properties.....

    Terry
    Attached Images Attached Images

  4. #4
    Member
    Join Date
    2007-12
    Location
    Portland, Oregon
    Posts
    36
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    I am using Annotative text and dimensions and it is working awsome. I often have details that need to be shown as an overview and then a close up of the part. With anno text you can set the viewport to see the text based on the scale you want it to come in as with the buttons in the lower right corner. I can now have one line of text show up in any scale that I want. The realy cool part is that you can move the text around with the grips in different scales and it doesn't effect the positioning in a viewport of a different scale. I love annotative text.

  5. #5
    Active Member
    Join Date
    2007-02
    Posts
    61
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    I've been considering the use of annotative text for the office but don't see that it will be useful outside its use in details. We divide our layers by discipline/category and so annotation follows suit. ie - a ceiling layer for dimensions related to RCP's and a a different layer for dimensions related to floor plans for example and we don't use dimensioning in paperspace. So that really leaves details.

    Do you use annotative dims/text in your plans? Do you do you dimensioning within the model or in the layout in model space or in paperspace?

    M

  6. #6
    Active Member
    Join Date
    2007-11
    Posts
    68
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    I use this Routin and it works so good. If you want other scales just change all the ones in this routin to the scale size you want.

    (defun c:S1 ()

    (COMMAND "DIMSCALE" "1")
    (COMMAND "SETVAR" "USERI1" "1")
    (setq dwgscale (* 1 (getvar "useri1")))
    (COMMAND "setvar" "ltscale" dwgscale) $s=xx $s=S
    (cOMMAND "TEXTSIZE" (* 2 dwgscale))
    (COMMAND "REGEN")
    (command "TEXTSTYLE" "ISO3098b")


    (princ) ;suppresses nil return
    )

  7. #7
    AUGI Addict
    Join Date
    2015-12
    Posts
    2,095
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    We use a small number of text styles with fixed text height so the designers don't have to memorize what height the text should be on the drawing. Most of our drawings are either not scaled or have the text in paper space, so scaling text height or using annotative text isn't required. For those drawings that do require scaling, a simple LISP to set the drawing scale sets everything up. Drawing set-up (including text styles) is handled through some complex automation - we have a number of different clients to support with different requirements.

  8. #8
    All AUGI, all the time TerribleTim's Avatar
    Join Date
    2006-03
    Location
    Tacoma, Wa
    Posts
    643
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    Quote Originally Posted by mazmier View Post
    How are you all dealing with automating/standardizing text heights? Have you a way to link text height with dimscale or are you setting up different text styles for each scale within templates? Anybody using annotative capabilities and how is that working for you?

    M
    We are still on ACAD2007. Put the freakin' text in "paper space" where it goes and make it the height you want and there isn't a problem.

  9. #9
    I could stop if I wanted to michael.12445's Avatar
    Join Date
    2001-03
    Posts
    350
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    Most of the text on our drawings occurs either in a dimension string or at the end of a leader. We use a lisp file to get our dimensions to conform to a standard appearance. The user just has to enter the scale factor, which is the same number you would use for "Zoom XP" (i.e, 48 for 1/4" scale) and the lisp file force-feeds values to every dimvar and sets up the parent dimstyle with children for linear, aligned, and leader styles.

  10. #10
    Certifiable AUGI Addict tedg's Avatar
    Join Date
    2005-06
    Location
    in the upper right corner
    Posts
    3,508
    Login to Give a bone
    0

    Default Re: Text Height Standardization

    We have preset "Dimstyles" and "Textstyles" with the scales and heights assigned.
    This keeps it simple for everyone so they don't have to do the math.

    If you're working in model space on a drawing that is set to plot 1/4" = 1'-0", you should be using the dim style "DIM-14" and text style "STD-14".

    We have one for paper space too called DIM-PS and STD-PS.

    We're still in 2005, 2006 & 2007 so we don't (can't) use annotative scaling.

Page 1 of 2 12 LastLast

Similar Threads

  1. 2013: Can I make text style height control label text heights?
    By caddjockey2000 in forum AutoCAD Civil 3D - General
    Replies: 0
    Last Post: 2013-12-05, 04:25 PM
  2. Lock Text Height in Dimension Style when Text Style Height is Not 0
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 2
    Last Post: 2013-01-16, 04:55 AM
  3. Text Height Changing Text box to Properties
    By ekolto in forum AutoCAD General
    Replies: 2
    Last Post: 2010-08-31, 04:04 PM
  4. changing text height inside text component editor
    By smcgypsea in forum AutoCAD Civil 3D - Pipes
    Replies: 2
    Last Post: 2010-04-29, 11:44 AM
  5. Set text height automatically to the correct height of your dimscale.
    By kastmiler in forum AutoCAD Tips & Tricks
    Replies: 7
    Last Post: 2006-03-16, 08:33 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
  •