Graphics.DpiY Propiedad

Definición

Obtiene la resolución vertical de este Graphicsobjeto .

public:
 property float DpiY { float get(); };
public float DpiY { get; }
member this.DpiY : single
Public ReadOnly Property DpiY As Single

Valor de propiedad

Valor, en puntos por pulgada, para la resolución vertical admitida por este Graphics.

Ejemplos

El método siguiente muestra el uso de las DpiX propiedades y DpiY . Este ejemplo está diseñado para su uso con un formulario Windows. Para ejecutar este ejemplo, péguelo en un formulario que contenga un ListBox control listBox1 con nombre y llame a este método desde el constructor del formulario.

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

Comentarios

Para obtener más información sobre la creación de aplicaciones de alta resolución, consulte

Valores altos de PPP.

Se aplica a

Consulte también