-
Notifications
You must be signed in to change notification settings - Fork 0
Home
This wiki is used to document both general Solidworks API practices as well as document how projects developed under this repository have been developed. Links to external references are included to help the reader both improve their knowledge of both the Solidworks API and general coding as applicable.
Resources
- Codestack.net - Getting started: Developing applications with SOLIDWORKS API
- xcad.net - getting started with xCAD framework for add-ins
Learning about API Commands
All of the available commands for the Solidworks API can be found using the API Help page built directly into Solidworks. The API Help page can be found by clicking Help, then API Help(see figure 1 below)
Figure 1: API Help Location
Solidworks macros are user-written functions that run within the Solidworks environment. The primary difference between a Solidworks macro and add-in lies in the scope of available functions and integration into Solidworks. Macros created by a user run as a script when prompted by the user and cannot utilize the property manager task pane for user input. In contrast, Solidworks add-ins run internally within Solidworks and can be run just as any other feature within Solidworks.
contact: calebcapps99@gmail.com Copyright Caleb Capps, 2022, all rights reserved
- Automatically Run Macro On Model Open
- Getting Started with Solidworks API
- Create C# stand-alone application for SOLIDWORKS API automation
- Xarial Blog - great examples for API implementation in Solidworks