Drawable.PixelSizeAdjustments Property
Gets or sets a number of parameters that adjusts rendering to the DPI of the display.
Syntax
public PixelSizeAdjustments PixelSizeAdjustments { get; set; }
Property Value
Default: null
A number of parameters that adjusts rendering to the DPI of the display.
Remarks
The parameters set in the PixelSizeAdjustments instance will be used by the drawable to adjust things like line widths, font sizes and similar. This can be used to adapt for instance a configuration designed for a standard 96 DPI desktop monitor to look equally good on a hand-held Android device, with perhaps two or three times higher resolution.
The property can be set directly in the configuration file, but that's not the intended use. Instead, the application should set this property based on the current display and type of device it is running on. This should be done after loading the configuration file, but before attaching the view to its map control. A simple way to create and initialize the PixelSizeAdjustments object to reasonable values is to call the factory method PixelSizeAdjustments.FromCurrentDpi.
Using this property together with the PixelSize property makes it possible to produce map images with higher resolution than the screen, for instance for printing. Please see PixelSize for an example.
Platforms
Windows, Linux, Android