View.RenderingHint Property
Gets or sets hints to improve rendering in some situations.
Thread safety: This property is not thread-safe and it should only be accessed from the GUI thread. Show
Syntax
public RenderingHint RenderingHint { get; set; }
Property Value
Type: RenderingHint
Default: None
A combination of one or more rendering hints to improve rendering quality in some situations.
Default: None
A combination of one or more rendering hints to improve rendering quality in some situations.
Example
// Set RenderingHint to MovingMap
public static void SetRenderingHintToMovingMap(View view)
{
// Set the RenderingHint to MovingMap
view.RenderingHint = RenderingHint.MovingMap;
// Update the View
view.Update();
}
Platforms
Windows, Linux, Android