Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
wgraham
348 Views, 1 Reply

Show FeatureDimensions on multiple features

Has anyone discovered a method to show all feature dimensions for multiple features?  Ideally it would behave similar to the snippet shown below.  Currently have my code making the dimensions from sketches available, but unfortunately there are times when the necessary dimension are associated only with the 3D feature.

 

foreach (PartFeature feature in partdocument.ComponentDefinition.Features)
{
    feature.FeatureDimensions.Show();
}