MapControl.GuiDelayMinimum Property
The minimum amount of time in milliseconds that needs to pass between an update ending and another one starting.
Syntax
public System.Int32 GuiDelayMinimum { get; set; }
Property Value
Default: 0
A time interval in milliseconds.
Remarks
The internal scheduling mechanism introduces gaps in which it plans to not perform work on the GUI thread. If you have a target framerate that sometimes is too much for the system, the application may have less time to perform other tasks than rendering the MapControl.
With this property you can set a minimum time that will be inserted after an update as a gap in the planned schedule. In the general case, it should be enough to only use GuiDelayPercentage, which will add gaps based on how much time Carmenta Engine spends on the GUI thread.
Increasing the value may improve the user experience if the application regularly does work on the GUI thread. This can lower the framerate but can also allow more input events to be taken care of and thereby offer a better user experience.
Platforms
Windows, Linux, Android