Resume (Show) a feature in the CAD environment.

Parameters

model (string) - the model name (no extension) to look inside

feature (string) - the feature to look for to Show

Return Value

none

Remarks

Resume will ensure the feature is Resumed/Visible in the model tree and 3D environment.

If the feature is already Resumed/Visible it will not do anything.

This is the reverse action to "Suppress".

Examples

if CAD.Comp.Exists("Model","28") then        'see if the feature 28 exists in the model
    CAD.Comp.Resume("Model","28")      ' show the feature.
    CAD.Asm.Regenerate("Model")         ' regenerate the model to show the change in the environment

else
    ' do something here based on the model+feature not already being present
end if