PrintDialog.PrintableAreaHeight 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
페이지에서 인쇄할 수 있는 영역의 높이를 가져옵니다.
public:
property double PrintableAreaHeight { double get(); };
public double PrintableAreaHeight { get; }
member this.PrintableAreaHeight : double
Public ReadOnly Property PrintableAreaHeight As Double
속성 값
인쇄할 수 있는 페이지 영역의 높이를 나타내는 Double입니다.
예제
다음 예제에서는 XAML(Extensible Application Markup Language) 태그 및 코드를 사용하여 속성 값을 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