Import model using exchange at the API
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
I write an UDF to import and dgk file.
I use the code
Dim modelDoc As FMDocument = fc.Documents.AddFM(tagFMSetupType.eST_Milling, False)
If modelExtension.ToLower = ".x_t" Then
modelDoc.SilentImport(project.ModelFilename)
Else
modelDoc.ImportUsingExchange2(project.ModelFilename, True)
End If
Now the FeatureCAM imprt an model and pop-up dialogue box
How can I use the api method to select the "Accept the imported data 'as is' and exit the wizard"
