XmlMappedRange.PrintOutEx Method
Prints out the XmlMappedRange.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
Function 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 _
) As Object
Object PrintOutEx(
Object From,
Object To,
Object Copies,
Object Preview,
Object ActivePrinter,
Object PrintToFile,
Object Collate,
Object PrToFileName
)
Parameters
From
Type: System.ObjectThe number of the page at which to start printing. If this argument is omitted, printing starts at the first page.
To
Type: System.ObjectThe number of the last page to print. If this argument is omitted, printing ends with the last page.
Copies
Type: System.ObjectThe number of copies to print. If this argument is omitted, one copy is printed.
Preview
Type: System.Objecttrue to have Microsoft Office Excel invoke print preview before printing the object. false to print the object immediately.
ActivePrinter
Type: System.ObjectSets the name of the active printer.
PrintToFile
Type: System.Objecttrue to print to a file. If PrToFileName is not specified, Excel prompts the user to enter the name of the output file.
Collate
Type: System.Objecttrue to collate multiple copies.
PrToFileName
Type: System.ObjectIf PrintToFile is set to true, this argument specifies the name of the file you want to print to.
Return Value
Type: System.Object
Remarks
"Pages" in the descriptions of From and To refers to printed pages, not to pages in the range.
Examples
The following code example sets the value of the EmployeeNameCellXmlMappedRange control on Sheet1. Next, the example prints one copy of the first two pages of the contents of EmployeeNameCell to the default printer.
Note
Typically, you populate the XmlMappedRange control from an XML file. This example hard-codes the value of the control for simplicity.
Private Sub PrintXMLMappedRange()
Globals.Sheet1.EmployeeNameCell.Value2 = "Karina Leal"
Globals.Sheet1.EmployeeNameCell.PrintOutEx( _
From:=1, _
To:=2, _
Copies:=1, _
Preview:=False)
End Sub
private void PrintXMLMappedRange()
{
Globals.Sheet1.EmployeeNameCell.Value2 = "Karina Leal";
Globals.Sheet1.EmployeeNameCell.PrintOutEx(
1,
2,
1,
false,
false,
true);
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.