Document.Print

Print()

使用默认打印机打印文档。

public void Print()

例子

显示如何使用带有默认选项的标准 Windows 对话框将文档发送到打印机。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

var document = new Aspose.Note.Document(dataDir + "Aspose.one");

document.Print();

显示如何使用具有指定选项的标准 Windows 对话框将文档发送到打印机。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

var document = new Aspose.Note.Document(dataDir + "Aspose.one");

var printerSettings = new PrinterSettings() { FromPage = 0, ToPage = 10 };
printerSettings.DefaultPageSettings.Landscape = true;
printerSettings.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(50, 50, 150, 50);

document.Print(new PrintOptions()
               {
                   PrinterSettings = printerSettings,
                   Resolution = 1200,
                   PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm(),
                   DocumentName = "Test.one"
               });

也可以看看


使用默认打印机打印文档。

public void Print(PrintOptions options)
范围类型描述
optionsPrintOptions用于打印文档的选项。可以为 null.

也可以看看