Intent automatically tracks changes in the model through the render process.
Enable or disable automatic updates to Intent models
Green-light state propagates all modifications to Inventor.
Red-light state is useful when you make multiple changes that each take time to render.
After the bulk changes are completed, switch automatic updates back to green to render the model with all of the changes.
Intent does not pre-calculate the steps count, so the percentage can decrease as the model renders.
Set the EnableProgress Indicator
Control visibilty of the progress indicator
IntentAPI.Instance.Options.IsRenderProgressEnabled
Create a custom progress indicator
class NullProgressIndicator : ProgressIndicator { public NullProgressIndicator() : base() {} public override void OnStart() {} public override void OnProgress(long curValue, long maxValue) {} public override void OnEnd() {} }
In Intent code, organize the steps/range through a call similar to the following: