Gets or sets the DocumentPaginator used to retrieve pages when printing the diagram.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public override DocumentPaginator DocumentPaginator { get; } |
Visual Basic
Copy Code
|
|---|
Public Overrides ReadOnly Property DocumentPaginator As DocumentPaginator |
An instance of the System.Windows.Documents.DocumentPaginator class.
RemarksYou can use this property as an argument to the PrintDocument.PrintDocument method.
ExampleC#
Copy Code
|
|---|
PrintDialog pd = new PrintDialog(); |
Visual Basic
Copy Code
|
|---|
Dim pd As New PrintDialog() If pd.ShowDialog() Then |
See Also