Jump to content

Multiple suppression rule


ankurpraja

Recommended Posts

Hello,

I am working on an iLogic form where i can define the size of a gusset plate as shown in the picture.

 

I am stuck at one point where i want a combo box in ilogic form with 3 options (chamfer, fillet and hole). And that will define which feature is active and make other 2 features suppress.

 

Making a combo box is not a big deal but I am not able to find an ilogic rule where i can say that 'if feature A is active then feature B and C are suppressed.

 

Any solution for above?

 

Thanks in Advance

Capture.JPG

Link to comment
Share on other sites

Whilst this is inventor in Autocad DCL I would use 3 radio buttons these can be made that as you select another the other button is turned off. You should be able to fit 3 easy.

Link to comment
Share on other sites

  • 1 month later...

Something like this should work:

 

'suppress all 3 features at first

Feature("Feature A").IsActive = False

Feature("Feature B").IsActive = False

Feature("Feature C").IsActive = False

 

'activate relevant feature

Select oFeature

Case A

Feature("Feature A").IsActive = True

Case B

Feature("Feature B").IsActive = True

Case C

Feature("Feature C").IsActive = True

End Select

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...