Graphics.DpiY プロパティ
アセンブリ: System.Drawing (system.drawing.dll 内)


DpiX プロパティと DpiY プロパティを使用する例を次のメソッドに示します。この例は、Windows フォームでの使用を意図してデザインされています。この例を実行するには、コードを listBox1 という名前の ListBox が含まれているフォームに貼り付け、フォームのコンストラクタからこのメソッドを呼び出します。
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
private void PopulateListBoxWithGraphicsResolution() { Graphics boxGraphics = listBox1.CreateGraphics(); Graphics formGraphics = this.CreateGraphics(); listBox1.Items.Add("ListBox horizontal resolution: " + boxGraphics.DpiX); listBox1.Items.Add("ListBox vertical resolution: " + boxGraphics.DpiY); boxGraphics.Dispose(); }
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; }
private void PopulateListBoxWithGraphicsResolution() { Graphics boxGraphics = listBox1.CreateGraphics(); Graphics formGraphics = this.CreateGraphics(); listBox1.get_Items().Add(("ListBox horizontal resolution: " + boxGraphics.get_DpiX())); listBox1.get_Items().Add(("ListBox vertical resolution: " + boxGraphics.get_DpiY())); boxGraphics.Dispose(); } //PopulateListBoxWithGraphicsResolution

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- Graphics.DpiY プロパティのページへのリンク