PrintDialog.PrintableAreaHeight Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the height of the printable area of the page.
public:
property double PrintableAreaHeight { double get(); };
public double PrintableAreaHeight { get; }
member this.PrintableAreaHeight : double
Public ReadOnly Property PrintableAreaHeight As Double
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.
<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
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.