Michael's Corner is a monthly publication written by Michael E. Beall, Autodesk Authorized Author and peripatetic AutoCAD trainer. Michael travels all over the USA, bringing his fantastic experience and great understanding of AutoCAD to his clients. Michael's Corner brings together many of the tips, tricks and methods developed during these training sessions for the benefit of all users.
Michael's Corner provides something for every AutoCAD user. Every month, a number of articles cover a wide range of topics, suitable for users at all levels, including "The Basics" for those just starting out. Essentially, the aim of Michael's Corner is to help all AutoCAD users work smarter and faster.
It's a God-thing.
I had no idea that 14 years ago I would be given the opportunity to make an impact on the professional lives of so many. Only God knew what was ahead, and hopefully, the contributions I have made through Michael's Corner have equipped many of you to be more productive and a bit more savvy using AutoCAD. And apart from all the AutoCAD bashing that is going on, I'm sure it has a long life ahead.
So, in an effort to keep the AutoCAD fires burning, here's what I have for my final installment…
…A reminder on how to customize your hot keys
…Three Power Tools — one for Zoom, one for editing, and one for Layers
…Two Odd Spots — one for Layers and one for Hatching
…Buried text treasure
…And how to Search 14 years of the Archives
As for what's ahead for me, I will continue to present a variety of AutoCAD sessions — Fundamentals, Intermediate, Customizing, Updates, and 2D & 3D. I will also keep training CAP Designer, 20-20 Worksheet, Visual Impression (those three from 20-20 Technologies, Inc.), and some Revit Fundamentals. Next year I'm looking forward to being very involved in training CET (from Configura, Inc.) when Herman Miller joins the growing number of manufacturers embracing this software that is being touted as the ‘Future of Space Planning’. Personally, I'm looking forward to spending a bit more time with Donna, my lovely bride of 30 years. When this posts, we'll probably be within days of going on our 30th Anniversary vacation to the Tanque Verde Ranch in Tucson; Ee-Hah! We had such a good time when we went for our 20th, we figured we'd do it again!
Ah, and I'm hoping to have The AutoCAD Workbench, Final Edition out before snow flies.
And with that, Mike drop! …so to speak.
The LORD bless you and keep you;
The LORD make His face shine upon you,
And be gracious to you;
The LORD lift up His countenance upon you,
And give you peace. Numbers 6:24-26
AutoCAD stores the code of all of the default linetypes in the file acad.lin. When you click on the linetype Continuous while in the Layer Properties dialog, the Select Linetype dialog opens. If you need a linetype that's not already in the drawing, you click on the Load button and the Load or Reload Linetypes dialog shows you all of the available linetypes which are contained in the acad.lin file. The trick is getting your own in there.
Rule No. 1 with AutoCAD, of course, is to use what's available as a building block to make your own. In this exercise you create a custom linetype for Cold Water --CW--CW--CW--.
*HOT_WATER_SUPPLY,Hot water supply ---- HW ---- HW ---- HW ----
A,.5,-.2,["HW",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.05],-.2
What follows is a review of the coded information for this new Cold Water custom linetype:
Second line must start with A.
Any positive number is 'pen down' and is the length of the line segment drawn between each CW occurrence. Any negative number is a 'pen up'. This specifies the length of the gap before the center point of the text.
[Bracketed information (with commas separating each item):
"CW" The text inserted in the line. You need to have it in quotes.
STANDARD The text style to be used for the inserted text. Please note that the style requested must exist in the drawing or the linetype cannot be displayed as defined.
S=.1 Text size if the text has not been preset in the requested text style. If the text style specifies a height for the text, the S value is the factor applied to that height.
R=0.0 How the text is to be treated within the line. The R defines the Relative rotation of the text within the line. If you use A=, you specify the Absolute angle of the text, regardless of the angle of the line drawn.
X= and Y= This specifies the position of the insertion point of the text referenced from the midpoint of the text. You'll need to finesse this setting.
…End of bracketed items]
-.2 Another pen up to leave a gap after the center point of the text.
Save the acad.lin file, then launch AutoCAD. Create a layer for the Cold Water line, then click on the default linetype of Continuous to open the Select Linetype dialog. Click load and navigate down to your (alphabetized) Cold Water linetype, then select and assign it to the layer. Now when you draw on that layer, your CW linetype will appear!
This tutorial ran with the default 'Start from Scratch' launch of AutoCAD. If you work on larger drawings (AEC), consider the following settings:
Pen down 96 or greater (8')
Pen up (gap) 18 or greater
S (text size) 12 or greater
X -12
Y -6
If you make changes within the acad.lin file while a drawing is open, you can use the Ltype command (LT) to open the Linetype Manager dialog, then reload your custom linetype. Once the linetype has been redefined in the drawing, Regen and you will see the updated version. Per the above figure, the linetype follows Plines around so consider A=0 for the rotation.