PrintDialog.PrintableAreaHeight プロパティ

定義

ページの印刷可能領域の高さを取得します。

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

プロパティ値

印刷可能ページ領域の高さを表す Double

次の例では、拡張アプリケーション マークアップ言語 (XAML) マークアップとコードを PrintableAreaHeight 使用して、 プロパティの値を取得する方法を示します。

<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

適用対象