MapControl.UpdateInterval Property
The update interval used by the MapControl.
Syntax
public System.Int32 UpdateInterval { get; set; }
Property Value
Default: 16
The number of milliseconds between updates.
Remarks
The update interval determines how often a MapControl, and the View it displays, can be updated.
If the MapControl uses the Scheduled update mode, it is interpreted as the minimum number of milliseconds between updates of this particular MapControl.
If the update mode is set to OnTimer it specifies the frequency at which updates occur.
If the update mode is set to Immediate, this property is not used.
In both Scheduled and OnTimer modes, this property effectively works as a frame rate limiter, even during for instance mouse interactions, so you should not set the interval too long. The default value of 16 milliseconds corresponds to approximately 60 frames per second.
If you want regular updates at a low frequency, you should use your own timer instead to do these updates, and leave the update mode as Scheduled.
Platforms
Windows, Linux, Android