News

These digits like E000:409 are a ProductID (E000) and a LocaleID (409). The ProductID structure is a 4-digit value. However, prior to AutoCAD 2006, the ProductID structure was only 3-digits with a ...
By David Wolfe (Contributor) Get start with Part 1 and Part 2 of this series. Expansion Joint Script This article will look at creating a completely new script, an expansion joint. The script should ...
By Adam Nagy If you have issues with loading or reloading your add-in these might be the most likely issues. 1) Issues with loading the add-in This is the scenario when your add-in never gets loaded.
By David Wolfe (Contributor) Get start with Part 1, Part 2, Part 3 and Part 4 of this series. Python Script Nozzles in AutoCAD Plant 3D This article will look at creating a nozzle to use in the ...
By Wayne Brill You may need to add a file and associate it to a file that already exists in the vault. This VB.NET example shows how this can be done. The example as I tested it adds an excel file on ...
By Madhukar Moogala We have an inbuilt AutoCAD command CONVTOSOLID, but this command is very limited doesn’t work effectively on Polyfacemesh <AcDbPolyFaceMesh> entities. We will create an in-memory ...
By Madhukar Moogala In this blog post, we will see how we can create Array objects, the three array parameters deriving from AcDbAssocArrayCommonParameters ...
By Gopinath Taget While the following technique takes longer to run than (command " -PSETUPIN" ), the example demonstrates how to use the (vla-CopyFrom) method to import pagesetups. NOTE: This example ...
By Balaji Ramamoorthy Here is a sample code to synchronize the view parameters between two model space viewports. For simplicity, this sample code assumes that the drawing already has two vertically ...
by Fenton Webb Here’s how to iterate a pipe network in Plant3d… First in .NET… [CommandMethod("PipeWalk")] public void pipeWalk() { // 4.1 Declare a variable as a PlantProject. Instantiate it using // ...