Monitor.GetResolutionType2 Method

Gets the resolution (method 2).
public static string GetResolutionType2()
This language is not supported or no code example is available.

Return Value

string

A string.

public static string GetResolutionType2()
 {
     string size = string.Empty;
     Graphics graphics = Graphics.FromHwnd(IntPtr.Zero);
     IntPtr desktop = graphics.GetHdc();
     int monitorHeight = Import.GetDeviceCaps(desktop, 6);
     int monitorWidth = Import.GetDeviceCaps(desktop, 4);
     size = $"{Math.Sqrt(Math.Pow(monitorHeight, 2) + Math.Pow(monitorWidth, 2)) / 25,4:#,##0.00}";
     return size;
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition