WorkbookBase.PrintOutEx 方法
打印工作簿。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public Sub PrintOutEx ( _
from As Object, _
to As Object, _
copies As Object, _
preview As Object, _
activePrinter As Object, _
printToFile As Object, _
collate As Object, _
prToFileName As Object, _
ignorePrintAreas As Object _
)
public void PrintOutEx(
Object from,
Object to,
Object copies,
Object preview,
Object activePrinter,
Object printToFile,
Object collate,
Object prToFileName,
Object ignorePrintAreas
)
参数
- from
类型:System.Object
要打印的第一页的页码。如果省略此参数,则打印从第一页开始。
- to
类型:System.Object
要打印的最后一页的页码。如果省略此参数,则打印完最后一页后停止打印。
- copies
类型:System.Object
要打印的份数。如果省略此参数,则打印一份副本。
- preview
类型:System.Object
为 true 时,Microsoft Office Excel 在打印对象之前调用打印预览。如果为 false,则立即打印对象。
- activePrinter
类型:System.Object
设置活动打印机的名称。
- printToFile
类型:System.Object
为 true 时打印到文件。如果未指定 PrToFileName,则 Excel 提示用户输入输出文件的名称。
- collate
类型:System.Object
如果为 true,则逐份打印多个副本。
- prToFileName
类型:System.Object
如果 PrintToFile 设置为 true,则此参数指定要打印到的文件的名称。
- ignorePrintAreas
类型:System.Object
如果要忽略打印区域并打印整个工作簿,则为 true;否则为 false。
备注
From 和 To 的说明中的“页”是指打印页,而不是工作表或工作簿中的全部页。
可选参数
有关可选参数的信息,请参见Office 解决方案中的可选参数。
示例
下面的代码示例使用 PrintOutEx 方法将工作簿前两个打印页的两个副本逐份打印到默认打印机。
此示例针对的是文档级自定义项。
Private Sub PrintWorkbook()
Me.PrintOutEx( _
From:=1, _
To:=2, _
Copies:=2, _
Preview:=False, _
Collate:=True, _
IgnorePrintAreas:=True)
End Sub
private void PrintWorkbook()
{
this.PrintOutEx(
1,
2,
2,
false,
false,
true,
true);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。