Graphics::DpiY Property
.NET Framework (current version)
Gets the vertical 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: void PopulateListBoxWithGraphicsResolution() { Graphics^ boxGraphics = listBox1->CreateGraphics(); // Graphics* formGraphics = this->CreateGraphics(); listBox1->Items->Add( String::Format( "ListBox horizontal resolution: {0}", boxGraphics->DpiX ) ); listBox1->Items->Add( String::Format( "ListBox vertical resolution: {0}", boxGraphics->DpiY ) ); delete boxGraphics; }
.NET Framework
Available since 1.1
Available since 1.1
Show: