다음을 통해 공유


DocumentPaginator.PageSize 속성

정의

파생 클래스에서 재정의되는 경우 각 페이지의 권장 너비와 높이를 가져오거나 설정합니다.

public:
 abstract property System::Windows::Size PageSize { System::Windows::Size get(); void set(System::Windows::Size value); };
public abstract System.Windows.Size PageSize { get; set; }
member this.PageSize : System.Windows.Size with get, set
Public MustOverride Property PageSize As Size

속성 값

Size

각 페이지의 너비와 높이를 나타내는 Size입니다.

예제

다음 예제에서는 PageSize를 설정하는 방법을 보여 줍니다.

// ------------------------ CreateFixedDocument -----------------------
/// <summary>
///   Creates an empty FixedDocument.</summary>
/// <returns>
///   An empty FixedDocument without any content.</returns>
private FixedDocument CreateFixedDocument()
{
    FixedDocument fixedDocument = new FixedDocument();
    fixedDocument.DocumentPaginator.PageSize = new Size(96 * 8.5, 96 * 11);
    return fixedDocument;
}
' ------------------------ CreateFixedDocument -----------------------
''' <summary>
'''   Creates an empty FixedDocument.</summary>
''' <returns>
'''   An empty FixedDocument without any content.</returns>
Private Function CreateFixedDocument() As FixedDocument
    Dim fixedDocument As New FixedDocument()
    fixedDocument.DocumentPaginator.PageSize = New Size(96 * 8.5, 96 * 11)
    Return fixedDocument
End Function

설명

DocumentPaginator 이 속성의 값을 재정의할 수 있습니다. 사용자가 확인 해야 DocumentPage.Size합니다.

적용 대상