Bird
Raised Fist0
Solidworksbi_tool~10 mins

Suppressing and unsuppressing features in Solidworks - Interactive Code Practice

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to suppress a feature named 'Cut-Extrude1'.

Solidworks
FeatureManager.FeatureByName("Cut-Extrude1").[1]()
Drag options to blanks, or click blank then click option'
ASuppress
BUnsuppress
CDelete
DEdit
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Unsuppress' instead of 'Suppress'
Trying to delete the feature instead
2fill in blank
medium

Complete the code to unsuppress a feature named 'Boss-Extrude2'.

Solidworks
FeatureManager.FeatureByName("Boss-Extrude2").[1]()
Drag options to blanks, or click blank then click option'
ADelete
BRename
CSuppress
DUnsuppress
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Suppress' instead of 'Unsuppress'
Trying to delete the feature
3fill in blank
hard

Fix the error in the code to suppress a feature named 'Fillet1'.

Solidworks
FeatureManager.FeatureByName("Fillet1").[1]
Drag options to blanks, or click blank then click option'
ASuppress
BSuppressFeature()
CSuppress()
DSuppressFeature
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting parentheses after method name
Using incorrect method names
4fill in blank
hard

Fill both blanks to suppress and then unsuppress a feature named 'Chamfer1'.

Solidworks
var feature = FeatureManager.FeatureByName("Chamfer1");
feature.[1]();
feature.[2]();
Drag options to blanks, or click blank then click option'
ASuppress
BUnsuppress
CDelete
DEdit
Attempts:
3 left
💡 Hint
Common Mistakes
Reversing the order
Using delete instead of suppress
5fill in blank
hard

Fill all three blanks to check if a feature named 'Hole1' is suppressed, then suppress it if not.

Solidworks
var feature = FeatureManager.FeatureByName("Hole1");
if (!feature.[1]) {
    feature.[2]();
} else {
    feature.[3]();
}
Drag options to blanks, or click blank then click option'
AIsSuppressed
BSuppress
CUnsuppress
DDelete
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong method names
Not using parentheses for methods

Practice

(1/5)
1. What does suppressing a feature in SolidWorks do?
Suppress means:
easy
A. Permanently deletes the feature from the model
B. Locks the feature to prevent changes
C. Creates a copy of the feature
D. Temporarily hides the feature without deleting it

Solution

  1. Step 1: Understand the meaning of suppress

    Suppressing a feature means hiding it temporarily so it does not affect the model but is not deleted.
  2. Step 2: Compare options

    Only Temporarily hides the feature without deleting it describes hiding temporarily without deletion, which matches suppressing.
  3. Final Answer:

    Temporarily hides the feature without deleting it -> Option D
  4. Quick Check:

    Suppress = Temporary hide [OK]
Hint: Suppress means hide temporarily, not delete [OK]
Common Mistakes:
  • Thinking suppress deletes the feature
  • Confusing suppress with locking
  • Assuming suppress duplicates the feature
2. Which of the following is the correct way to unsuppress a feature in SolidWorks?
easy
A. Right-click the feature and select Delete
B. Right-click the feature and select Unsuppress
C. Double-click the feature to hide it
D. Drag the feature out of the feature tree

Solution

  1. Step 1: Identify the correct unsuppress action

    Unsuppressing means bringing back a hidden feature, done by right-clicking and choosing Unsuppress.
  2. Step 2: Eliminate incorrect options

    Deleting removes the feature, double-click hides or edits, dragging out is invalid.
  3. Final Answer:

    Right-click the feature and select Unsuppress -> Option B
  4. Quick Check:

    Unsuppress = Right-click + Unsuppress [OK]
Hint: Unsuppress by right-clicking and choosing Unsuppress [OK]
Common Mistakes:
  • Choosing Delete instead of Unsuppress
  • Thinking double-click unsuppresses
  • Trying to drag features to unsuppress
3. Given a model with three features: A (unsuppressed), B (suppressed), and C (unsuppressed). If you unsuppress feature B, what will be the visible features in the model?
medium
A. Features A, B, and C
B. Features A and C only
C. Only feature B
D. No features visible

Solution

  1. Step 1: Understand current feature states

    Feature A and C are visible; B is hidden (suppressed).
  2. Step 2: Unsuppress feature B

    Unsuppressing B makes it visible along with A and C.
  3. Final Answer:

    Features A, B, and C -> Option A
  4. Quick Check:

    Unsuppress B shows all three features [OK]
Hint: Unsuppress shows hidden features again [OK]
Common Mistakes:
  • Assuming unsuppress hides other features
  • Thinking only the unsuppressed feature shows
  • Confusing suppress and unsuppress effects
4. You tried to unsuppress a feature but it remains hidden. What is the most likely cause?
medium
A. The feature is deleted, not suppressed
B. You did not save the model before unsuppressing
C. The feature is suppressed by a parent feature
D. The feature is locked and cannot be unsuppressed

Solution

  1. Step 1: Analyze why unsuppress fails

    If a parent feature is suppressed, child features remain hidden even if unsuppressed.
  2. Step 2: Check other options

    Deleted features cannot be unsuppressed; saving does not affect visibility; locking is not a standard feature.
  3. Final Answer:

    The feature is suppressed by a parent feature -> Option C
  4. Quick Check:

    Parent suppression blocks child unsuppress [OK]
Hint: Check parent feature suppression if unsuppress fails [OK]
Common Mistakes:
  • Trying to unsuppress deleted features
  • Assuming saving affects suppression
  • Confusing locking with suppression
5. You have a complex assembly with multiple features suppressed to test a design change. After testing, you want to restore the original model quickly. What is the best practice to unsuppress all features efficiently?
hard
A. Use the Unsuppress All command in the feature tree
B. Unsuppress each feature one by one manually
C. Delete all suppressed features and recreate them
D. Restart SolidWorks to reset feature states

Solution

  1. Step 1: Understand the need for efficiency

    Manually unsuppressing many features is slow and error-prone.
  2. Step 2: Identify the best tool

    SolidWorks provides an Unsuppress All command to restore all suppressed features quickly.
  3. Step 3: Eliminate wrong options

    Deleting features loses data; restarting does not change suppression; manual unsuppress is inefficient.
  4. Final Answer:

    Use the Unsuppress All command in the feature tree -> Option A
  5. Quick Check:

    Unsuppress All restores features fast [OK]
Hint: Use Unsuppress All to restore features fast [OK]
Common Mistakes:
  • Unsuppressing features one by one
  • Deleting suppressed features unnecessarily
  • Restarting expecting suppression reset