Aracılığıyla paylaş


DocumentPaginator.PageSize Özellik

Tanım

Türetilmiş bir sınıfta geçersiz kılındığında, her sayfanın önerilen genişliğini ve yüksekliğini alır veya ayarlar.

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

Özellik Değeri

Size

Size Her sayfanın genişliğini ve yüksekliğini temsil eden bir.

Örnekler

Aşağıdaki örnekte değerinin nasıl ayarlanacağı gösterilmektedir 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

Açıklamalar

bu DocumentPaginator özelliğin değerini geçersiz kılabilir. Kullanıcıların öğesini denetlemesi DocumentPage.Sizegerekir.

Şunlara uygulanır