PrintDialog.PrintableAreaHeight Właściwość

Definicja

Pobiera wysokość obszaru drukowania strony.

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

Wartość właściwości

Obiekt Double , który reprezentuje wysokość obszaru strony z możliwością drukowania.

Przykłady

W poniższym przykładzie pokazano, jak uzyskać wartość PrintableAreaHeight właściwości przy użyciu znaczników i kodu extensible Application Markup Language (XAML).

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

...

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

Dotyczy