- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
At the Visual Studio 2010, I add reference to FeatureCAM 2016
I write the code belower to get the feature names.
Dim doc As FeatureCAM.FMDocument = fc.ActiveDocument
For f As Integer = 0 To doc.Features.Count - 1
Dim docFeatrue As FeatureCAM.FMFeature = doc.Features.Item(i)
MsgBox(docFeatrue.Name)
Next
But when I debug the code ,it tell me the docFeatrure is nothing.
How can I fix this code.
¡Resuelto! Ir a solución.