Compartir a través de


PrintDialog.PrintableAreaWidth Propiedad

Definición

Obtiene el ancho del área imprimible de la página.

public:
 property double PrintableAreaWidth { double get(); };
public double PrintableAreaWidth { get; }
member this.PrintableAreaWidth : double
Public ReadOnly Property PrintableAreaWidth As Double

Valor de propiedad

Double

Un Double que representa el ancho del área imprimible de la página.

Ejemplos

En el ejemplo siguiente se muestra cómo obtener el valor de la PrintableAreaWidth propiedad mediante el marcado y el código del lenguaje de marcado de aplicación extensible (XAML).

<Button Width="200" Click="GetWidth">Get the Printable Width</Button>

...

private void GetWidth(object sender, RoutedEventArgs e)
{
    PrintDialog pDialog = new PrintDialog();
    PrintQueue pq = pDialog.PrintQueue;     //force initialization of the dialog's PrintTicket or PrintQueue
    txt2.Text = pDialog.PrintableAreaWidth.ToString() + " is the printable width";
}
Private Sub GetWidth(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim pDialog As New PrintDialog()
    Dim pq As PrintQueue = pDialog.PrintQueue 'force initialization of the dialog's PrintTicket or PrintQueue
    txt2.Text = pDialog.PrintableAreaWidth.ToString() & " is the printable width"
End Sub

Se aplica a