0% found this document useful (0 votes)
176 views2 pages

CAD Diesel Expressions Guide

This document provides several RTEXT expressions coded by JJ Purugganan to display information like the username, date, file details, and xrefs in AutoCAD drawings. The expressions can be used "as needed" and include variables for things like the username, drawing name, layout, date, and xrefs. The full code includes 4 different RTEXT expressions with variations on displaying things like the file creation/update dates and times, plotting date, username, and xref file names.

Uploaded by

Monaliza Lizts
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
176 views2 pages

CAD Diesel Expressions Guide

This document provides several RTEXT expressions coded by JJ Purugganan to display information like the username, date, file details, and xrefs in AutoCAD drawings. The expressions can be used "as needed" and include variables for things like the username, drawing name, layout, date, and xrefs. The full code includes 4 different RTEXT expressions with variations on displaying things like the file creation/update dates and times, plotting date, username, and xref file names.

Uploaded by

Monaliza Lizts
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

CODED by: JJ PURUGGANAN

These RTEXT Diesel expressions work for me, explore and use as needed:
Plotted by: $(upper,$(getvar,"loginname"))
And if you'd like the full plot stamp I use:
Drawing: $(upper,$(getvar,"dwgprefix")$(getvar,"dwgname"))
Layout Tab: $(upper,$(getvar,"ctab"))
Xrefs: $(upper,$(xrefs , ,))
Images: $(upper,$(images , ,))
Date: $(edtime,$(getvar,date),MO/DD/YYYY)
Time: $(edtime,$(getvar,date),HH:MM:SS AM/PM)
Plotted by: $(upper,$(getvar,"loginname"))
File Created: $(edtime,$(getvar,tdcreate),DDD", "D MON YYYY)
File Last Updated: $(edtime,$(getvar,tdupdate),DDD", "D MON YYYY)
Today's Date: $(edtime,$(getvar,date),DDD", "D MON YYYY)

Rtext-1 Coded BY: JJ


CAD User: $(upper,$(getvar,loginname)) File Last Updated: $(edtime,$(getvar,tdu
pdate),month dd"," YYYY H:mm:ssam/pm) Plot Date: $(edtime,0, month dd"," yyyy -
H:mm:ssam/pm)
File: $(getvar,dwgprefix)$(getvar,"dwgname")\$(getvar,ctab)

Rtext-2 Coded BY: JJ


Path: $(substr,$(GETVAR,DWGPrefix),1,$(+,-4,$(strlen,$(getvar,dwgprefix)))) Fil
ename: $(substr,$(GETVAR,DWGNAME),1,$(+,-4,$(strlen,$(getvar,dwgname)))) Plot D
ate: $(EDTIME, 0,MON DD"," YYYY-HH:MM:SSam/pm) CAD User: $(GETVAR, "LOGINNAME")
. Xref Filename:$(xrefs,2, | ,) |

Rtext-3 Coded BY: JJ


Plotted By: $(upper,$(getvar,loginname)) -$(edtime,0, dddd month dd"," YYYY h:mm
:ssam/pm)
File Created: $(edtime,$(getvar,tdcreate),month dd"," YYYY) File Last Updated:
$(edtime,$(getvar,tdupdate),month dd"," YYYY)
File: $(getvar,dwgprefix)$(getvar,"dwgname")\$(getvar,ctab)
Xrefs File/s: $(xrefs,3)

Rtext-4 Coded BY: JJ (Currently use in Geolabs, Inc.)


CAD User: $(upper,$(getvar,loginname)) File Created: $(edtime,$(getvar,tdcreate
),month dd"," YYYY) File Last Updated: $(edtime,$(getvar,tdupdate),month dd","
YYYY H:mm:ssam/pm)
File: $(getvar,dwgprefix)$(getvar,"dwgname")\$(getvar,ctab)

You might also like