70002271 Improve performance of the StartUp Action

Article 70002271
Type Wish
Product Engine
Version 1001
Date Added 10/27/2022 12:00:00 AM
Fixed 10.1002.0.5 (11/18/2022 12:00:00 AM)
Submitted by Wayne Romer

Summary

Improve performance of the StartUp Action

Solution

In version 1002.0.4
The performance of the StartUp Action can be improved by setting the following property


VdDocument doc;
doc.GlobalRenderProperties.StartUpActionCursor = Cursors.Cross ; //set to any one of the Windows System Cursors or your custom cursor
//default value for the StartUpActionCursor is null;


Note:
In real time changing this value use the following code:
//Example toggle on/off the StartUpActionCursor property
doc.ActiveLayOut.OverAllActiveAction.Hide();
doc.GlobalRenderProperties.StartUpActionCursor = doc.GlobalRenderProperties.StartUpActionCursor == null ? Cursors.Cross : null;
doc.ActiveLayOut.Refresh();

Send comments on this topic.