Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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.
Solved! Go to Solution.