MONITOR_DPI_TYPE class enum

Identifies the dots per inch (dpi) setting for a monitor.

Constructors

MONITOR_DPI_TYPE()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

MDT_ANGULAR_DPI → const int
The angular DPI. This DPI ensures rendering at a compliant angular resolution on the screen. This does not include the scale factor set by the user for this specific display.
MDT_DEFAULT → const int
The default DPI setting for a monitor is MDT_EFFECTIVE_DPI.
MDT_EFFECTIVE_DPI → const int
The effective DPI. This value should be used when determining the correct scale factor for scaling UI elements. This incorporates the scale factor set by the user for this specific display.
MDT_RAW_DPI → const int
The raw DPI. This value is the linear DPI of the screen as measured on the screen itself. Use this value when you want to read the pixel density and not the recommended scaling setting. This does not include the scale factor set by the user for this specific display and is not guaranteed to be a supported DPI value.