000

Index Labels

Log AutoCAD's Plotting

.
One of the technical issues CAD managers oftern ask thenself is how do I tracking plottings done through AutoCAD.

There are many ways to do that. AutoCAD itself provides plot and publish logging (via Options dialog box->Plot and Publish tab). There be other software that can monitor printing tasks sent to one or more printers...

With AutoCD .NET API, we can fairly easily to build a custom plotting logging application, which is the topic of this article.

The Autodesk.AutoCAD.PlottingServices.PlotReactorManager class provides all the functionalities needed to track plotting from an running AutoCAD session. This class exposes a series of events that fire from the beginning of plotting to the end of plotting. Some plotting information that would be the interest of plot tracking is exposed through various EventArgs. Therefore, simply handling approriate events and retrieving needed plotting information, then saving the information into some sort of data store, these all a custom plot tracking application needs to do.

Let's look at the code.

First, I define a data class that hold plotting information I want to track when AutoCAD does a plotting:

using System;
using Autodesk.AutoCAD.DatabaseServices;
 
namespace TrackAcadPlotting
{
    public class PlotLog
    {
        public string DwgName { set; get; }
        public string DwgPath { set; get; }
        public int CopyCount { set; get; }
        public string PlotterName { set; get; }
        public DateTime PlottingTime { set; get; }
        public PlotPaperUnit PaperUnit { set; get; }
        public double PaperWidth { set; get; }
        public double PaperHeight { set; get; }
        public string MediaName { set; get; }
        public string UserName { set; get; }
        public string ComputerName { set; get; }
    }
}

The data store used to save plot tracking data can be different, from file (plain text, Xml...), to database. AutoCAD built-in plotting log is a plain text file, usually saved where the the plotted drawing is, if enabled. Of course these kind of plotting logs are not convenient for plotting management: they scattered everywhere. In general, file based store is not very ideal solution with this custom plot tracking application: the user who runs AutoCAD, thus the plot tracking application, must have read/write permission to the log file. So, it could be a security hole, if you want this plot tracking to be a serious CAD management tool. Ideally, the data store would be some sort of central database.

In order for this custom plot tracking application to be able to save plotting log to different data store, I created an Interface called IPlottingLogWriter. For different data store, we can write different code to save the plotting log, as long as the IPlottingLogWriter is implemented. In this article, the the simplicity, I implemented an file data store, called PlottingLogFileWriter to save plotting log to a text file. As aforementioned, I could implement the IPlottingLogWriter to save the data to database, or send the plotting log data to a WCF service to be saved somewhere. This way, no matter what data storage mechanism the application uses, the code to track plotting will not have to be changed.
Here is the Interface and its implementing:

The interface:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace TrackAcadPlotting
{
    public interface IPlottingLogWriter
    {
        void SavePlottingLog(PlotLog log);
    }
}


The interface implementing:


using System;
using System.IO;
 
namespace TrackAcadPlotting
{
    public class PlottingLogFileWriter : IPlottingLogWriter
    {
        private string _logFolder;
 
        public PlottingLogFileWriter(string folderPath)
        {
            _logFolder = folderPath;
 
            //Create log folder:
            if (!Directory.Exists(_logFolder))
            {
                Directory.CreateDirectory(_logFolder);
            }
        }
 
        #region IPlottingLogWriter Members
 
        public void SavePlottingLog(PlotLog log)
        {
            string fileName = _logFolder + 
                        "\\PlotTracking_" + 
                        DateTime.Today.ToString("yyyy-MM-dd") + 
                        ".txt";
 
            using (FileStream st = new FileStream(
                fileName, FileMode.Append, FileAccess.Write, FileShare.Write))
            {
                using (StreamWriter writer = new StreamWriter(st))
                {
                    writer.WriteLine(
                        "-------------Log begins------------------");
 
                    writer.WriteLine("Drawing: {0}", 
                        log.DwgName);
                    writer.WriteLine("File path: {0}", 
                        log.DwgPath);
                    writer.WriteLine("Plotting copy: {0}", 
                        log.CopyCount);
                    writer.WriteLine("Plotter name: {0}", 
                        log.PlotterName);
                    writer.WriteLine("Paper unit: {0}", 
                        log.PaperUnit.ToString());
                    writer.WriteLine("Paper width: {0}", 
                        log.PaperWidth.ToString("#######0.00") + "mm");
                    writer.WriteLine("Paper hight: {0}", 
                        log.PaperHeight.ToString("#######0.00") + "mm");
                    writer.WriteLine("Media name: {0}", 
                        log.MediaName);
                    writer.WriteLine("User name: {0}", 
                        log.UserName);
                    writer.WriteLine("CAD computer: {0}", 
                        log.ComputerName);
 
                    writer.WriteLine(
                        "-------------Log ends--------------------");
 
                    writer.Flush();
                    writer.Close();
                }
            }
        }
 
        #endregion
    }
}

Finally, this is the class "TrackPlotting" that does the actual work:

    1 using System;
    2 using System.Collections.Generic;
    3 using System.IO;
    4 
    5 using Autodesk.AutoCAD.ApplicationServices;
    6 using Autodesk.AutoCAD.EditorInput;
    7 using Autodesk.AutoCAD.PlottingServices;
    8 using Autodesk.AutoCAD.Geometry;
    9 using Autodesk.AutoCAD.Runtime;
   10 
   11 [assembly: CommandClass(typeof(TrackAcadPlotting.TrackPlotting))]
   12 [assembly: ExtensionApplication(typeof(TrackAcadPlotting.TrackPlotting))]
   13 
   14 namespace TrackAcadPlotting
   15 {
   16     public class TrackPlotting: IExtensionApplication
   17     {
   18         private static PlotReactorManager _plotManager;
   19         private static IPlottingLogWriter _logWriter;
   20         private static bool _cancelled=false;
   21         private static PlotLog _log=null;
   22 
   23         #region IExtensionApplication Members
   24 
   25         private List<string> _plotters = null;
   26 
   27         public void Initialize()
   28         {
   29             Document dwg = Autodesk.AutoCAD.ApplicationServices.
   30                 Application.DocumentManager.MdiActiveDocument;
   31 
   32             //Get plotter names to track
   33             _plotters = GetPlotterNames();
   34 
   35             try
   36             {
   37                 //Hard-coded log file folder path.
   38                 //In production, the file path could be
   39                 //set in acad.exe.confg or using other 
   40                 //configuing technique
   41                 //Note: here I instantiated an PlottingLogFileWriter
   42                 //I can also instantiate an PlottingLogSqlServerWriter, 
   43                 //if it is available
   44                 _logWriter = new PlottingLogFileWriter("E:\\Temp\\PlottingTrack");
   45             }
   46             catch
   47             {
   48                 if (dwg != null)
   49                 {
   50                     dwg.Editor.WriteMessage(
   51                         "\nInitializing plot tracking log writer faailed.");
   52                 }
   53 
   54                 return;
   55             }
   56 
   57             //Hook up event handlers
   58             _plotManager = new PlotReactorManager();
   59 
   60             _plotManager.BeginPlot += 
   61                 new BeginPlotEventHandler(PlotManager_BeginPlot);
   62 
   63             _plotManager.BeginDocument += 
   64                 new BeginDocumentEventHandler(PlotManager_BeginDocument);
   65 
   66             _plotManager.BeginPage += 
   67                 new BeginPageEventHandler(PlotManager_BeginPage);
   68 
   69             _plotManager.EndPage += 
   70                 new EndPageEventHandler(PlotManager_EndPage);
   71 
   72             _plotManager.EndDocument += 
   73                 new EndDocumentEventHandler(PlotManager_EndDocument);
   74 
   75             _plotManager.EndPlot += 
   76                 new EndPlotEventHandler(PlotManager_EndPlot);
   77 
   78             _plotManager.PageCancelled += 
   79                 new PageCancelledEventHandler(PlotManager_PageCancelled);
   80 
   81             _plotManager.PlotCancelled += 
   82                 new PlotCancelledEventHandler(PlotManager_PlotCancelled);
   83 
   84             if (dwg != null)
   85             {
   86                 dwg.Editor.WriteMessage("\nPlot tracking has been initialized.");
   87             }
   88         }
   89 
   90         public void Terminate()
   91         {
   92             //Remove event handlers
   93             _plotManager.BeginPlot -= 
   94                 new BeginPlotEventHandler(PlotManager_BeginPlot);
   95 
   96             _plotManager.BeginDocument -= 
   97                 new BeginDocumentEventHandler(PlotManager_BeginDocument);
   98 
   99             _plotManager.BeginPage -= 
  100                 new BeginPageEventHandler(PlotManager_BeginPage);
  101 
  102             _plotManager.EndPage -= 
  103                 new EndPageEventHandler(PlotManager_EndPage);
  104 
  105             _plotManager.EndDocument -= 
  106                 new EndDocumentEventHandler(PlotManager_EndDocument);
  107 
  108             _plotManager.EndPlot += 
  109                 new EndPlotEventHandler(PlotManager_EndPlot);
  110 
  111             _plotManager.PageCancelled -= 
  112                 new PageCancelledEventHandler(PlotManager_PageCancelled);
  113 
  114             _plotManager.PlotCancelled -= 
  115                 new PlotCancelledEventHandler(PlotManager_PlotCancelled);
  116         }
  117 
  118         #endregion
  119 
  120         #region private methods
  121 
  122         private List<string> GetPlotterNames()
  123         {
  124             List<string> plotters = new List<string>();
  125 
  126             //A plotter name list could be stored somewhere
  127             //and loaded in, such as acad.exe.config (user may change it!)
  128             //Or centrally stored in a DB (so only manager can set/change it)
  129             //Here I simply hard-coded one plotter name
  130             plotters.Add("CutePDF Writer");
  131 
  132             return plotters;
  133         }
  134 
  135         private void GetUserComputerName(
  136             out string userName, out string computerName)
  137         {
  138             userName = "";
  139             computerName = "";
  140 
  141             string domain = System.Environment.UserDomainName;
  142             string user = System.Environment.UserName;
  143 
  144             userName = domain + "\\" + user;
  145             computerName = System.Environment.MachineName;
  146         }
  147 
  148         private bool IsTracedDevice(string plotterName)
  149         {
  150             foreach (string plt in _plotters)
  151             {
  152                 if (plt.Equals(plotterName,
  153                     StringComparison.CurrentCultureIgnoreCase))
  154                 {
  155                     return true;
  156                 }
  157             }
  158 
  159             return false;
  160         }
  161 
  162         #endregion
  163 
  164         #region Private methods: plotting event handlers
  165 
  166         private void PlotManager_BeginPlot(object sender, BeginPlotEventArgs e)
  167         {
  168             _cancelled = false;
  169 
  170             if (e.PlotType == Autodesk.AutoCAD.
  171                 PlottingServices.PlotType.BackgroundPlot
  172                 || e.PlotType == Autodesk.AutoCAD.
  173                 PlottingServices.PlotType.Plot)
  174             {
  175 
  176                 _log = new PlotLog();
  177 
  178                 string user;
  179                 string comp;
  180                 GetUserComputerName(out user, out comp);
  181 
  182                 _log.UserName = user;
  183                 _log.ComputerName = comp;
  184             }
  185             else
  186             {
  187                 _log = null;
  188             }
  189         }
  190 
  191         private void PlotManager_BeginDocument(
  192             object sender, BeginDocumentEventArgs e)
  193         {
  194             if (e.PlotToFile)
  195             {
  196                 _log = null;
  197                 return;
  198             }
  199 
  200             _log.DwgName = Path.GetFileName(e.DocumentName);
  201             _log.DwgPath = Path.GetDirectoryName(e.DocumentName);
  202             _log.CopyCount = e.Copies;
  203         }
  204 
  205         private void PlotManager_BeginPage(
  206             object sender, BeginPageEventArgs e)
  207         {
  208             if (_log == null) return;
  209 
  210             if (e.PlotInfo.ValidatedConfig != null)
  211             {
  212                 if (e.PlotInfo.ValidatedConfig.IsPlotToFile)
  213                 {
  214                     _log = null;
  215                     return;
  216                 }
  217 
  218                 _log.PlotterName = e.PlotInfo.ValidatedConfig.DeviceName;
  219             }
  220 
  221             if (e.PlotInfo.ValidatedSettings != null)
  222             {
  223                 _log.PaperUnit = e.PlotInfo.ValidatedSettings.PlotPaperUnits;
  224                 _log.MediaName = e.PlotInfo.ValidatedSettings.CanonicalMediaName;
  225 
  226                 Point2d pt = e.PlotInfo.ValidatedSettings.PlotPaperSize;
  227                 if (pt.X > pt.Y)
  228                 {
  229                     _log.PaperWidth = pt.X;
  230                     _log.PaperHeight = pt.Y;
  231                 }
  232                 else
  233                 {
  234                     _log.PaperWidth = pt.Y;
  235                     _log.PaperHeight = pt.X;
  236                 }
  237             }
  238         }
  239 
  240         private void PlotManager_EndPage(
  241             object sender, EndPageEventArgs e)
  242         {
  243             if (e.Status != SheetCancelStatus.Continue) _cancelled = true;
  244         }
  245 
  246         private void PlotManager_EndDocument(
  247             object sender, EndDocumentEventArgs e)
  248         {
  249             if (e.Status != PlotCancelStatus.Continue) _cancelled = true;
  250         }
  251 
  252         private void PlotManager_EndPlot(
  253             object sender, EndPlotEventArgs e)
  254         {
  255             if (e.Status != PlotCancelStatus.Continue) _cancelled = true;
  256 
  257             if (_cancelled)
  258             {
  259                 _log = null;
  260                 _cancelled = false;
  261                 return;
  262             }
  263 
  264             if (_log == null) return;
  265 
  266             _log.PlottingTime = DateTime.Now;
  267 
  268             //Debug code here
  269             Document dwg = Autodesk.AutoCAD.ApplicationServices.
  270                 Application.DocumentManager.MdiActiveDocument;
  271             Editor ed = dwg.Editor;
  272 
  273             ed.WriteMessage("\nPlotted by: {0}", _log.UserName);
  274             ed.WriteMessage("\nPlotted on: {0}", _log.PlotterName);
  275             ed.WriteMessage("\nDwg Location: {0}", _log.DwgPath);
  276             ed.WriteMessage("\nPlotted Dwg: {0}", _log.DwgName);
  277             ed.WriteMessage("\nMedia: {0}", _log.MediaName);
  278             ed.WriteMessage("\nMedia size: " + 
  279                 _log.PaperWidth.ToString("#####0.00") + 
  280                 " (W) x " + 
  281                 _log.PaperHeight.ToString("#####0.00") + " (H)");
  282             ed.WriteMessage("\nCopy Count: {0}", _log.CopyCount);
  283 
  284             //Save Plotting log, if the plotting plotter is on printer list;
  285             if (IsTracedDevice(_log.PlotterName))
  286             {
  287                 _logWriter.SavePlottingLog(_log);
  288             }
  289         }
  290 
  291         private void PlotManager_PlotCancelled(object sender, EventArgs e)
  292         {
  293             _cancelled = true;
  294         }
  295 
  296         private void PlotManager_PageCancelled(object sender, EventArgs e)
  297         {
  298             _cancelled = true;
  299         }
  300 
  301         #endregion
  302     }
  303 }

Some descriptions of the code:

Line 16: this class implements IExtensionApplication. That means, as soon as the assembly is loaded, the code starts monitoring plotting done in the AutoCAD session.

Line 25 and Line 122 - 133: these lines of code defines a list of plotter/printer name that I want to track. The name should be the same as I can see in the printer dropdown list of AutoCAD's plot dialog box. Only plotters in this list is tracked.

Line 44: Notice the variable _logWriter is declared as IPlottingLogWriter, but here it points to a PlottingLogFileWriter (new PlottingLogFileWriter()). It is possible to declare the differently implemented IPlottingLogWriter in acad.exe.config, so that this class will be truly not affected when a new implemented log-writer is available/changed.

The rest of code would be quite obvious, no extra explanation is necessary.

This video clip shows how it works. Note, since I used CutePDF virtual plotter, each time after the plotting is done (e.g. the PDF has been produced), I simply cancelled the "Save As" dialog box. By then the plotting from AutoCAD has already completed, thus cancelling saving PDF file has no affect to the plot tracking process.

At my work, similar code is used to monitor AutoCAD plotting to some expensive color plotters office-wide. The plotting logs are saved to database and can be browsed by managers through a web application.

Finally, I'd like to thank Kean Walmsley for recommending me the VS addin tool CopySourceToHtml, which solves my code posting issue.

Blog Archive

Labels

.NET Programming 2D Drafting 3D 3D Animation 3D Art 3D Artist 3D CAD 3D Character 3D design 3D design tutorial 3D Drafting 3D effects 3D Engineering 3D Lighting 3D Materials 3D Modeling 3D models 3D Navigation 3D presentation 3D Printing 3D rendering 3D scanning 3D scene 3D simulation 3D Sketch Inventor 3D Texturing 3D visualization 3D Web App 3ds Max 4D Simulation ACC Adaptive Clearing adaptive components Add-in Development Additive Layers Additive Manufacturing Advanced CAD features Advanced Modeling advanced plot styles Advanced Sketch AEC Technology AEC Tools AEC Workflow affordable Autodesk tools AI AI animation AI Assistance AI collaboration AI Design AI Design Tools AI Experts AI for Revit AI Guide AI in 3D AI in Architecture AI in CAD AI in CNC AI in design AI in engineering AI in Manufacturing AI in Revit AI insights AI lighting AI rigging AI Strategies AI Tips AI Tools AI Tricks AI troubleshooting AI workflow AI-assisted AI-assisted rendering AI-Assisted Workflow AI-enhanced AI-powered templates Animation Animation Curves Animation Layers animation pipeline animation tips Animation Tutorial Animation workflow annotation Annotation Scaling annotation standards Annotations AR Architectural AI Architectural CAD architectural design Architectural Drawing architectural drawings architectural modeling architectural preservation Architectural Productivity architectural visualization Architecture architecture CAD architecture design Architecture Engineering Architecture Firm Architecture Productivity architecture projects architecture software architecture technology architecture tools Architecture Visualization Architecture Workflow Arnold Renderer Arnold Shader Artificial Intelligence As-Built Model assembly techniques Asset Management augmented reality Auto Rig Maya AutoCAD AutoCAD advice AutoCAD AI tools AutoCAD API AutoCAD automation AutoCAD Basics AutoCAD Beginner AutoCAD Beginners AutoCAD Blocks AutoCAD Civil 3D AutoCAD Civil3D AutoCAD commands AutoCAD efficiency AutoCAD Expert Advice AutoCAD features AutoCAD File Management AutoCAD Guide AutoCAD Hub AutoCAD Layer AutoCAD Layers AutoCAD learning AutoCAD print settings AutoCAD productivity AutoCAD scripting AutoCAD Scripts AutoCAD Sheet Set tips AutoCAD Teaching AutoCAD Techniques AutoCAD Templates AutoCAD tips AutoCAD tools AutoCAD training. AutoCAD tricks AutoCAD Tutorial AutoCAD workflow AutoCAD Xref Autodesk Autodesk 2025 Autodesk 2026 Autodesk 3ds Max Autodesk AI Autodesk AI Tools Autodesk Alias Autodesk AutoCAD Autodesk BIM Autodesk BIM 360 Autodesk Certification Autodesk Civil 3D Autodesk Cloud Autodesk community forums Autodesk Construction Cloud Autodesk Docs Autodesk Dynamo Autodesk features Autodesk for Education Autodesk Forge Autodesk FormIt Autodesk Fusion Autodesk Fusion 360 Autodesk help Autodesk InfraWorks Autodesk Inventor Autodesk Inventor Frame Generator Autodesk Inventor iLogic Autodesk Knowledge Network Autodesk License Autodesk Maya Autodesk mistakes Autodesk Navisworks Autodesk news Autodesk plugins Autodesk productivity Autodesk Recap Autodesk resources Autodesk Revit Autodesk Software Autodesk support ecosystem Autodesk Takeoff Autodesk Tips Autodesk training Autodesk tutorials Autodesk update Autodesk Upgrade Autodesk Vault Autodesk Video Autodesk Viewer Automate automate drawing updates Automate Printing automate publishing automate repetitive tasks Automated Design automated publishing Automated Sheets Automation Automation in AutoCAD Automation Tools Automation Tutorial automotive design automotive visualization Backup Basic Commands Basics batch drawing validation Batch Plot Batch Plotting Beginner beginner CAM Beginner Tips beginner tutorial beginners guide Bend Tools Best Practices Big Data BIM BIM 360 BIM Challenges BIM collaboration BIM Compliance BIM Coordination BIM Data BIM Design BIM Efficiency BIM for Infrastructure BIM Implementation BIM Library BIM Management BIM modeling BIM software BIM Standards BIM technology BIM Tips BIM tools BIM Trends BIM workflow Block Editor Block Management Block Organization Boolean Operations Building design Building Design Software Building Efficiency Building Maintenance building modeling Building Systems Building Technology business tools ByLayer CAD CAD API CAD assembly CAD Automation CAD best practices CAD Blocks CAD CAM CAD collaboration CAD commands CAD comparison CAD consistency CAD Customization CAD Data Management CAD Design CAD drawing checks CAD efficiency CAD errors CAD Evolution CAD file management CAD File Size Reduction CAD Integration CAD Learning CAD libraries CAD line thickness CAD management CAD Migration CAD mistakes CAD modeling CAD Optimization CAD organization CAD Oversight CAD plugins CAD Productivity CAD project management CAD Projects CAD Rendering CAD Scripting CAD Security CAD Sheet Management CAD sheet sets CAD Shortcuts CAD Skills CAD software CAD software 2026 CAD software training CAD standardization CAD standards CAD Tables CAD team CAD teams CAD technology CAD templates CAD Tips CAD Tools CAD Tracking CAD tricks CAD Tutorial CAD version control CAD workflow CAD workflow optimization CAD workflows CAM CAM Best Practices CAM for beginners CAM Optimization CAM simulation CAM strategies CAM Tips CAM tutorial CAM Workflow car design software Case Study central hub Central Hub Solutions centralized commands centralized documentation centralized management Centralized Sheet Set centralizing CAD CEO Guide CG Workflow CGI CGI design Character Animation Character Rig Character Rigging cinematic lighting Civil 3D Civil 3D hidden gems Civil 3D productivity Civil 3D tips civil design software civil engineering Civil engineering software Clash Detection Class-A surfacing clean CAD file cleaning command client engagement Cloth Simulation Cloud CAD cloud CAD storage Cloud Collaboration Cloud design platform Cloud Engineering Cloud Management Cloud Storage Cloud-Based CAD Cloud-First CNC CNC machining collaboration collaboration in CAD Collaboration Tools Collaborative CAD collaborative design Collaborative Drafting color management command abbreviations Complex Projects Complex Renovation concept car conceptual workflow Connected Design construction Construction Analytics Construction Automation Construction BIM Construction Cloud construction documentation construction drawings construction management Construction Phases Construction Planning Construction Project Construction Projects Construction Scheduling Construction Technology construction tools construction tracking Contractor contractor tools Contractor Workflow Contraints corridor design Cost Effective Design cost estimation Create resizable blocks Creative Teams creative tools CTB CTB STB Custom Hatch custom scripts custom tool palettes Custom visual styles Cutting Parameters Cybersecurity Data Backup Data Extraction data management Data Protection Data Reference Data Security Data Shortcut deadline tracking Demolition Design Design Automation Design Career Design Collaboration Design Comparison Design consistency Design Coordination Design Documentation design efficiency Design Engineering design errors Design Hacks Design Innovation design management design optimization Design Options Design Oversight design productivity design review Design Reviews design revisions Design Rules design software design software tips design standardization design standards Design Teams Design Technology design templates design tips Design Tools design tracking Design Workflow design-to-construction Designer designer hacks Designer Tools Designer Workflow Digital Art Digital Assets Digital Construction Digital Construction Technology Digital Content Digital Design Digital Drafting digital drawing Digital engineering digital fabrication Digital Library Digital Manufacturing digital marketing digital takeoff Digital Thread Digital Tools Digital Transformation Digital Twin Digital Twins digital workflow dimension dimension styles dimensioning Disaster Recovery document management Document Organization Documentation drafting drafting automation Drafting Efficiency Drafting productivity Drafting Shortcuts Drafting Standards Drafting Tips drafting tools Drafting Workflow Drawing Drawing Accuracy Drawing Automation drawing consistency drawing management Drawing Organization drawing revisions Drawing standards drawing templates drawing tips Dref DWG files DXF Export Dynamic Block Dynamic Block AutoCAD Dynamic Blocks dynamic data management Dynamic doors Dynamic windows Dynamics Dynamics Simulation Dynamo Dynamo automation early stage design eco design editing commands Efficiency efficient CAD efficient project management Electrical Systems Emerging Features Energy Analysis energy efficiency Energy Simulation Engineering Engineering Automation engineering CAD engineering data Engineering Design Engineering Documentation Engineering Drawing engineering drawings engineering efficiency Engineering Innovation Engineering Productivity engineering projects Engineering Skills engineering software Engineering Technology engineering tips engineering tools Engineering Tools 2025 Engineering Workflow Error Reduction Excel Export Workflow Express Tools External Reference Fabric Simulation facial animation Facial Rigging Facility Management Families Fast Structural Design faster delivery Field Documentation file auditing File Management file naming File Optimization File Recovery Fire Flame flange tips flat pattern Fluid Effects Fluid Simulation Forge Development Forge Viewer FreeCAD Fusion 360 Fusion 360 API Fusion 360 guide Fusion 360 Tips Fusion 360 tutorial Future of Design Future Skills Game Design Game Development Game Effects Gamification Generative Design Geospatial Data GIS Global design teams global illumination GPU Acceleration grading optimization Graph Editor Green Architecture green building Green Technology Grips Handoff Hatch Patterns HDRI health check Healthcare Facilities heavy CAD file Heavy CAD Files heritage building conservation hidden commands Hospital Design Hub Workflows HVAC HVAC Design Tools HVAC Engineering HVAC Optimization Hydraulic Modeling IK/FK iLogic Import Workflow Industrial Design Industry 4.0 Infrastructure infrastructure design Infrastructure Monitoring Infrastructure Planning Infrastructure Technology InfraWorks innovation Insight Intelligent AutoCAD Hub Intelligent automation Intelligent Design intelligent modeling Intelligent Repetition Control Intelligent Sheet Management Intelligent Sheet Sets intelligent tools Intelligent Workflow Interactive Design interactive presentation Interior Design Inventor Inventor API Inventor Drawing Template Inventor Frame Generator Inventor Graphics Issues Inventor IDW Inventor Tips Inventor Tutorial IoT ISO 19650 joints Keyboard Shortcuts keyframe animation Keyframe generation Landscape Design Large Projects Laser Scan layer conventions Layer Management Layer Organization layer standards layouts Learn AutoCAD Legacy CAD Library components Licensing light techniques Lighting Lighting and shading Lighting Techniques lineweight Linked Models Liquid Machine Learning Machine Learning in CAD Machine Optimization Machining Efficiency machining productivity Macros maintenance command Manage multiple projects from a single hub with a centralized project management system that improves collaboration Management manual plotting manufacturing Manufacturing Innovation Manufacturing Technology Mapping Technology marketing visuals master sheet index Material Creation Material Libraries Maya Maya Animation Maya character animation Maya lighting Maya Python Maya Rigging Maya Shader Maya Tips Maya tutorial Maya Workflow measurement Mechanical Design Mechanical Engineering Media & Entertainment MEP MEP Modeling Mesh-to-BIM Metal Fabrication Metal Structure milestone tracking modal analysis Model Clarity Model Management Model Optimization model space Modeling Secrets Modular Housing Monitoring Progress Motion capture Motion Design motion graphics motion simulation MotionBuilder Multi Office Workflow multi-axis machining Multi-Body Modeling Multi-Project Multi-Project Management Multi-User Environment multileader multiple sheet sets naming convention Navisworks Navisworks Best Practices nCloth Net Zero Design New Construction ObjectARX .NET API Open Source CAD Optimization Organization OVERKILL OVERKILL AutoCAD Override Layers Page Setup Palette paper space parametric assembly Parametric Components Parametric Constraints parametric design parametric family Parametric Modeling particle effects particle systems PDF PDF Export PDM system Personal Brand Phase Filters Phasing photorealism Photorealistic photorealistic render PlanGrid plot automation Plot Settings Plot Style Plot Style AutoCAD plot styles Plotting Plotting automation Plugin Tutorial Plumbing Design PM Tools point cloud Portfolio Post Construction Post-Processing Practice Drawing precision machining preconstruction workflow predictive analysis predictive animation Predictive Maintenance Predictive rigging Prefabrication Preloaded families Presentation-ready visuals Printing Printing Quality Problem Solving Procedural animation procedural motion Procedural Rig Procedural Textures Product Design Product Development product lifecycle product rendering Product Visualization Productivity productivity and workflow efficiency. productivity tips productivity tools Professional 3D design Professional CAD Professional Drawings professional printing Professional Tips Professional Workflow progress management Project Accuracy project automation Project Collaboration project consistency Project Coordination project dashboard Project Documentation project efficiency Project Goals project management Project Management Tools project milestones Project Monitoring project organization Project Oversight project planning Project Progress project quality project timeline project tracking Project Visualization project workflow PTC Creo Publish Drawings PURGE PURGE AutoCAD Rail Transit Rapid Prototyping Realism realistic rendering realistic scenes ReCap Redshift Shader reduce CAD errors reduce CAD file size Reduce Errors reduce manual updates Reducing redundancy Redundant Work Render Render Optimization Render Passes Render Quality Render Settings render tips Rendering rendering engine Rendering Engines Rendering Optimization rendering settings rendering software Rendering Techniques Rendering Tips Rendering Workflow RenderMan Renewable Energy Renovation Project Renovation Workflow repetition-free workflow repetitive drawing Repetitive Elements repetitive-free Reports Resizable Block restoration workflow Reusable Components Revision Control Revision Tracking Revit Revit add-ins Revit API Revit automation Revit Best Practices Revit Collaboration Revit Documentation Revit Family Revit integration Revit MEP Revit Performance Revit Phasing Revit plugin Revit Plugins Revit Scripting Revit skills Revit Standards Revit Strategies Revit Structure Revit Tags Revit Template Revit templates Revit Tips Revit tutorial Revit Workflow Ribbon Rigging Rigid Body robotics ROI Room planning save hours of work Save Time save time CAD Scale Autodesk Schedules screen Scripts Sculpting Secure Collaboration Sensor Data Shader Networks sheet management Sheet Metal Sheet Metal Design Sheet Metal Tricks Sheet organization sheet set Sheet Set Automation Sheet Set Efficiency Sheet Set fields Sheet Set Management Sheet Set Manager Sheet Set Optimization Sheet Set Organization Sheet Set Software Sheet Set Standards Sheet Set Tips Sheet Set Tools Sheet Sets sheet sets workflow Sheets shortcut keys Shortcuts Siemens NX Simulation simulation tools Sketch Sketching Tricks Small Firms Smart Architecture Smart Block Smart Building Design Smart CAD smart CAD tools Smart City Smart Design smart dimensioning Smart Engineering Smart Factory Smart Infrastructur Smart Project Smart Sheet Management Smart Sheet Set Tools Smart Sheet Sets Smart Workflows Smoke Soft Body Software Compliance software ecosystem Software Management Software Trends software troubleshooting Software Update Solar Energy Solar Panels SolidWorks Space planning standard part libraries Standardization Standardize standardized templates Startup Design static stress STB Steel Structure Design Stress-Free Structural Design Structural Modeling Structural Optimization subscription model Subscription Value surface finish Surface Modeling sustainability sustainable design Sustainable Manufacturing system performance T-Spline task management team collaboration Team Efficiency Team Productivity Team Projects team training guide technical documentation Technical Drawing technical support Template management Template Setup Template usage templates text settings text style Texture Mapping Texturing thermal analysis time efficiency Time Management time saving tools time savings time-saving time-saving tools Title Block title block automation Title Blocks Tool Libraries Tool Management Tool Palette Guide toolbar toolpath Toolpath Optimization Toolpaths Topography Track Track changes Troubleshooting Tutorial Tutorials Unfolding Techniques urban planning User Interface (UI) UV Mapping UV Unwrap V-Ray Vault Best Practices Vault Lifecycle Vault Mistakes Vector Plotting vehicle modeling version control VFX View Filters Viewport configuration viewports Virtual Environments virtual reality visual effects visualization workflow VR VR Tools VRED Water Infrastructure Water Management Weight Painting What’s New in Autodesk Wind Energy Wind Turbines Workbook workflow Workflow Automation workflow efficiency Workflow Optimization Workflow Tips Worksets Worksharing Workspace XLS Xref Xrefs เขียนแบบ