Verify ~ CAD standards tool
Most organizations define some type of CAD standard and expect drafters using CAD software such as AutoCAD and IntelliCAD to abide by that standard. A standard is usually set for such things as 'approved' layer names, text styles, linetype styles, block names, view names, dimension styles etc.
Considerable frustration occurs where drafters don't follow standards. This is especially true when electronic drawings are provided to the organization by outside contractors and these need to be modified by other drafters at a later time. If the drawings have not been checked thoroughly, much time can be lost while the drawings are brought 'up to scratch' at considerable expense. Since CAD files may remain in the archives for many years before they need to be worked on again, the original bill may have been paid and the organization providing the contract drafting service may well have moved on. There is clearly a need for a system enabling the electronic checking of CAD drawings.
Autodesk provide such as system in AutoCAD. All you do is load a CAD drawing in your discipline that meets the required standard and save that as a CAD standard template and the AutoCAD tool does the job for them. It si possible to do the same thing in the IntelliCAD environment using AutoLISP, one of IntelliCAD's programming languages. We call it VERIFY; software which enables rapid, electronic checking of drawings against a CAD standard.
Program design
![]() |
Programming language
Operation and output from VERIFY
Step 1. Create ASCII files defining standard
Verify uses a group of simple text files to contain approved names. The filenames must confirm to the list below and include the extension .STD.
Filename Purpose layers.std List of layer names blocks.std List of block names styles.std List of text styles views.std List of stored views viewport.std List of paper space viewports ltypes.std List of linetypes dimstyle.std List of dimension stylesThese files must be 'clean' ASCII files, created with Windows Notepad or some other text editor.
Examples of standards files
; GENERAL LAYER NAMES FOR DRAWING MANAGEMENT
File LAYERS.STD July, 2001 Authorised by J Bloggs0
BORDER
MANAGEMENT_CONSTRUCTION
MANAGEMENT_LOGO
MANAGEMENT_NORTH_PT
MANAGEMENT_NOTES_LEGEND
MANAGEMENT_SERV_RELOCATION
MANAGEMENT_TEMPLATE
MANAGEMENT_TITLEBLOCK
MANAGEMENT_VPORT
TEXTS
TEXTM
TEXTL
DEFPOINTS
;-APPROVED LAYER NAMES FOR EXISTING DRAINS -----
EX_DRAIN_BC
EX_DRAIN_DSEP
EX_DRAIN_GI
EX_DRAIN_HW
EX_DRAIN_INV
Use Windows Explorer to make a folder called VERIFY. Copy all the files from the distribution disk to this folder. The following files should be present:
Verify.lspblocks.stddimstyle.stdlayers.stducs.stdverify.cfgstyles.stdviewport.stdviews.std
Create an output folder
Edit the VERIFY configuration file
Running VERIFY
Start AutoCAD (12, 13, 14 or AutoCAD 2000 - 2011) or IntelliCAD (any version).Open the drawing that you want to check.Load Verify using the following syntax by typing at the command line.(load "c:/Verify/Verify.lsp")
![]()
|
![]() |
(load "C:/verify/verify");verify;A;N;close;open;
Search path
Output

Auditing drawings
Note that our program is not a replacement for the IntelliCAD command AUDIT. Click here to learn about auditing drawings.
Please email info@designcad.com.au if you have requests for improvements/changes to VERIFY.


