- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm currently digging through Inventors API trying to find a link to a original feature of a mirrored feature in a part file.
Once the code gets to the kMirrorFeatureObject I need it to reach through and get the original feature object.
Does anyone know of a way to get to this value through the API?
Thanks
If statement sample
Dim ABF As PartFeature
Dim ExtParam As String
If ABF.Type = kExtrudeFeatureObject Then
ExtParam = ABF.Extent.Distance.Expression
ElseIf ABF.Type = kThickenFeatureObject Then
ExtParam = ABF.FeatureDimensions.Item(1).Parameter.Expression
ElseIf ABF.Type = kMirrorFeatureObject Then
{ ExtParam = ABF.MirrorFeatures } <---------- This is where I run into problems
End If
Solved! Go to Solution.