Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Adding a Feature Suppression after a Publish to the Content Center

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
AMN3161
398 Views, 2 Replies

Adding a Feature Suppression after a Publish to the Content Center

I am tryin to add more functionality to a existing content center part but i don't want to delete it and republish. I have a feature that needs to be suppressed depending on what a key column says. I can use logic if there is no other way but i prefer to keep it within the iparts table if possible

 

 

2 REPLIES 2
Message 2 of 3
johnsonshiue
in reply to: AMN3161

Hi! You do need to delete the family and republish it to CC library.

Many thanks!



Johnson Shiue (johnson.shiue@autodesk.com)
Software Test Engineer
Message 3 of 3
AMN3161
in reply to: johnsonshiue

Logic seems to be my solution then

 

If iProperties.Value("Custom", "End_Type_Key") = "SW Both Ends" Then

Feature.IsActive("SW_END_1") = True
Feature.IsActive("SW_END_2") = True

Else If iProperties.Value("Custom", "End_Type_Key") = "End 1 - Threaded"
Feature.IsActive("SW_END_1") = False
Feature.IsActive("SW_END_2") = True

Else If iProperties.Value("Custom", "End_Type_Key") = "End 2 - Threaded"
Feature.IsActive("SW_END_1") = True
Feature.IsActive("SW_END_2") = False

Else If iProperties.Value("Custom", "End_Type_Key") = "THD Both Ends"
Feature.IsActive("SW_END_1") = False
Feature.IsActive("SW_END_2") = False

End If

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report