Is there a way to create a new configuration with something written into "description" of the configuration properties?
i used AddConfiguration3 but there is no argument for "description" in it.
Sub main()
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
Dim strNumber As String
strNumber = InputBox("please enter name of config", "config")
swModel.AddConfiguration3 strNumber, Empty, Empty, 0
End Sub