"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
February 11, 2026 2 min read

Attach custom metadata to your geometry to drive smarter selection, automation, and downstream reporting. Here’s how to use Object Data (Map 3D) and Extended Data (XData) effectively in AutoCAD.
When to use what
XData essentials
Quick AutoLISP: add/read a simple XData tag
;; Attach STATUS=APPROVED under the MYAPP regapp
(defun c:TAGX (/ e)
(if (setq e (car (entsel "\nSelect object to tag: ")))
(progn
(regapp "MYAPP")
(entmod (append (entget e '("*"))
(list (list -3 (list (cons 1001 "MYAPP")
(cons 1000 "STATUS")
(cons 1000 "APPROVED"))))))
(princ "\nXData attached.")
)
)
(princ)
)
;; Read raw XData payload
(defun c:READX (/ e ed xd)
(if (setq e (car (entsel "\nSelect object: ")))
(progn
(setq ed (entget e '("*")))
(setq xd (cdr (assoc -3 ed)))
(prin1 xd)
)
)
(princ)
)
Pro tips for XData workflows
Object Data (Map 3D) quick start
Housekeeping and standards
Need guidance choosing between XData, Xrecords, Property Sets, or Object Data? Consult the experts at NOVEDGE. For licensing, toolset comparisons, and deployment advice on AutoCAD and specialized toolsets, visit NOVEDGE’s AutoCAD page.
You can find all the AutoCAD products on the NOVEDGE web site at this page.
Sign up to get the latest on sales, new releases and more …