PrintDialog.PrintableAreaWidth Eigenschap

Definitie

Hiermee wordt de breedte van het afdrukbare gebied van de pagina weergegeven.

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

Waarde van eigenschap

Een Double die de breedte van het afdrukbare paginagebied aangeeft.

Voorbeelden

In het volgende voorbeeld ziet u hoe u de waarde van de PrintableAreaWidth eigenschap kunt ophalen met behulp van XAML-markeringen (Extensible Application Markup Language) en code.

<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

Van toepassing op