PaperTray
内容
[
隐藏
]PageInfo.PaperTray property
获取文档中指定的该页的纸盘 (bin)。 该值是特定于实现(打印机)的。
public int PaperTray { get; }
例子
演示如何打印 Word 文档中每个页面的页面大小和方向信息。
Document doc = new Document(MyDir + "Rendering.docx");
// 第一部分有 2 页。我们将为每台打印机分配一个不同的打印机纸盘,
// 其编号将与一种纸张来源相匹配。这些来源及其种类会有所不同
// 取决于安装的打印机驱动程序。
PrinterSettings.PaperSourceCollection paperSources = new PrinterSettings().PaperSources;
doc.FirstSection.PageSetup.FirstPageTray = paperSources[0].RawKind;
doc.FirstSection.PageSetup.OtherPagesTray = paperSources[1].RawKind;
Console.WriteLine("Document \"{0}\" contains {1} pages.", doc.OriginalFileName, doc.PageCount);
float scale = 1.0f;
float dpi = 96;
for (int i = 0; i < doc.PageCount; i++)
{
// 每个页面都有一个 PageInfo 对象,其索引是相应页面的编号。
PageInfo pageInfo = doc.GetPageInfo(i);
// 打印页面的方向和尺寸。
Console.WriteLine($"Page {i + 1}:");
Console.WriteLine($"\tOrientation:\t{(pageInfo.Landscape ? "Landscape" : "Portrait")}");
Console.WriteLine($"\tPaper size:\t\t{pageInfo.PaperSize} ({pageInfo.WidthInPoints:F0}x{pageInfo.HeightInPoints:F0}pt)");
Console.WriteLine($"\tSize in points:\t{pageInfo.SizeInPoints}");
Console.WriteLine($"\tSize in pixels:\t{pageInfo.GetSizeInPixels(1.0f, 96)} at {scale * 100}% scale, {dpi} dpi");
// 打印源托盘信息。
Console.WriteLine($"\tTray:\t{pageInfo.PaperTray}");
PaperSource source = pageInfo.GetSpecifiedPrinterPaperSource(paperSources, paperSources[0]);
Console.WriteLine($"\tSuitable print source:\t{source.SourceName}, kind: {source.Kind}");
}
也可以看看
- class PageInfo
- 命名空间 Aspose.Words.Rendering
- 部件 Aspose.Words