Graphics.DpiX Property
.NET Framework (current version)
Gets the horizontal resolution of this Graphics.
Assembly: System.Drawing (in System.Drawing.dll)
The following method shows the use of the DpiX and DpiY properties. This example is designed for use with a Windows Form. To run this example, paste it into a form that contains a ListBox named listBox1 and call this method from the form's constructor.
Private Sub PopulateListBoxWithGraphicsResolution() Dim boxGraphics As Graphics = listBox1.CreateGraphics() Dim formGraphics As Graphics = Me.CreateGraphics() listBox1.Items.Add("ListBox horizontal resolution: " _ & boxGraphics.DpiX) listBox1.Items.Add("ListBox vertical resolution: " _ & boxGraphics.DpiY) boxGraphics.Dispose() End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: