DocumentPage 构造函数

定义

初始化 DocumentPage 类的新实例。

重载

DocumentPage(Visual)

使用指定的 DocumentPage 初始化 Visual 类的新实例。

DocumentPage(Visual, Size, Rect, Rect)

使用指定的 DocumentPage 和框大小初始化 Visual 类的新实例。

DocumentPage(Visual)

使用指定的 DocumentPage 初始化 Visual 类的新实例。

public:
 DocumentPage(System::Windows::Media::Visual ^ visual);
public DocumentPage (System.Windows.Media.Visual visual);
new System.Windows.Documents.DocumentPage : System.Windows.Media.Visual -> System.Windows.Documents.DocumentPage
Public Sub New (visual As Visual)

参数

visual
Visual

页的直观表示。

适用于

DocumentPage(Visual, Size, Rect, Rect)

使用指定的 DocumentPage 和框大小初始化 Visual 类的新实例。

public:
 DocumentPage(System::Windows::Media::Visual ^ visual, System::Windows::Size pageSize, System::Windows::Rect bleedBox, System::Windows::Rect contentBox);
public DocumentPage (System.Windows.Media.Visual visual, System.Windows.Size pageSize, System.Windows.Rect bleedBox, System.Windows.Rect contentBox);
new System.Windows.Documents.DocumentPage : System.Windows.Media.Visual * System.Windows.Size * System.Windows.Rect * System.Windows.Rect -> System.Windows.Documents.DocumentPage
Public Sub New (visual As Visual, pageSize As Size, bleedBox As Rect, contentBox As Rect)

参数

visual
Visual

页的直观表示。

pageSize
Size

在任何剪切之后的页的大小(包括边距)。

bleedBox
Rect

用于打印与生产相关的出血、注册标记以及剪切标记的区域,该区域可能显示在逻辑页边界之外的物理纸张上。

contentBox
Rect

边距内的页区域。

注解

bleedBox 预期物理工作表将裁剪到其最终页面大小时,维度可能大于 pageSize 维度。

另请参阅

适用于