ChartSheetBase.PrintOutEx Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Prints the chart that is displayed on the ChartSheetBase.
public void PrintOutEx (object from, object to, object copies, object preview, object activePrinter, object printToFile, object collate, object prToFileName);
member this.PrintOutEx : obj * obj * obj * obj * obj * obj * obj * obj -> unit
Public Sub PrintOutEx (Optional from As Object, Optional to As Object, Optional copies As Object, Optional preview As Object, Optional activePrinter As Object, Optional printToFile As Object, Optional collate As Object, Optional prToFileName As Object)
Parameters
- from
- Object
The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.
- to
- Object
The number of the last page to print. If this argument is omitted, printing ends with the last page.
- copies
- Object
The number of copies to print. If this argument is omitted, one copy is printed.
- preview
- Object
true
to have Microsoft Office Excel invoke print preview before printing the object. false
(or omitted) to print the object immediately.
- activePrinter
- Object
Sets the name of the active printer.
- printToFile
- Object
true
to print to a file. If prToFileName
is not specified, Excel prompts the user to enter the name of the output file.
- collate
- Object
true
to collate multiple copies.
- prToFileName
- Object
The name of the file to print to. This parameter is used only if printToFile
is true
.
Examples
The following code example uses the PrintOutEx method to print one copy of the first two pages of the chart sheet Chart1
to the default printer. To run this code example, your workbook must contain a chart sheet named Chart1
.
private void PrintChartsheet()
{
Microsoft.Office.Tools.Excel.ChartSheet myChartSheet =
Globals.Chart1.Base;
myChartSheet.PrintOutEx(
1,
2,
1,
false,
false,
true);
}
Private Sub PrintChartsheet()
Dim myChartSheet As Microsoft.Office.Tools.Excel.ChartSheet = _
Globals.Chart1.Base
myChartSheet.PrintOutEx( _
From:=1, _
To:=2, _
Copies:=1, _
Preview:=False)
End Sub
Remarks
"Pages" in the descriptions of From
and To
refers to printed pages— not overall pages in the sheet or workbook.
Optional Parameters
For information about optional parameters, see Optional Parameters in Office Solutions.