ViewUpdateKind Enumeration
Specifies when a call to View.Update or MapControl.UpdateView is actually carried out.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum ViewUpdateKind
Values
Value name | Value | Description |
---|---|---|
Default | 0 | The view will be updated according to the MapControl.UpdateMode of the map control. If the current mode is Scheduled or OnTimer, there may be a delay until the actual update takes place. This is the recommended kind of update to use in most situations, since it doesn't add any extra load to the system. |
Immediate | 1 | This tells the map control to ignore the behavior of its current update mode, and update the view as soon as possible. The call will return immediately, without waiting for the update to finish. This kind of update can be useful for instance if you run the map control on slow timer, but want result of a user interactions to show up immediately, without waiting for the next timer update. But note that it will result in an increased load on the system. |
Blocking | 2 | This kind of update should almost never be used. The update will be carried out directly, on the calling thread, completely bypassing the update scheduler of the map control. The call will not return until the update is complete. The only reason to use this is if you want to do something with the screen output immediately afterwards, like calling Drawable.Save or similar to make a screen shot of the map window. In all other cases, use Default or Immediate. |
Remarks
Read more at Efficient Integration of Map Controls in GUI Applications to learn how to code your application using these modes.
Calling View.Update for a view that is not connected to a map control will always be carried out directly, on the calling thread, regardless of the kind parameter.
Platforms
Windows, Linux, Android