Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there a direct path to a part feature from a DrawingCurve object?
I know the following is possible, but it's slow.
EdgeProxy _edgeProxy = _curveObject.Curve.ModelGeometry;
PartDocument _prtDoc = _edgeProxy.ContainingOccurrence.Definition.Document;
foreach (PartFeature _partFeature in _prtDoc.ComponentDefinition.Features)
{
// Interrogate features
}
Thanks...
Solved! Go to Solution.