Graphics.DpiX プロパティ
定義
public:
property float DpiX { float get(); };
public float DpiX { get; }
member this.DpiX : single
Public ReadOnly Property DpiX As Single
プロパティ値
この Graphics でサポートされる水平方向の解像度の値 (dpi)。The value, in dots per inch, for the horizontal resolution supported by this Graphics.
例
次のメソッドは、プロパティとプロパティの使用方法を示して DpiX DpiY います。The following method shows the use of the DpiX and DpiY properties. この例は、Windows フォームで使用するように設計されています。This example is designed for use with a Windows Form. この例を実行するには、名前付きの listBox1 を含むフォームに貼り付け、 ListBox フォームのコンストラクターからこのメソッドを呼び出します。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;
}
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 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
注釈
高解像度アプリケーションの作成の詳細については、「」を参照してください。For more information about creating high-resolution applications, see