PrintDialog.PrintableAreaHeight Property

Definition

Gets the height of the printable area of the page.

C#
public double PrintableAreaHeight { get; }

Property Value

A Double that represents the height of the printable page area.

Examples

The following example shows how to get the value of the PrintableAreaHeight property by using Extensible Application Markup Language (XAML) markup and code.

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

...

C#
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";
}

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10