XmlMappedRange.PrintOut Method (2003 System)

Prints the XmlMappedRange control.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Syntax

'Declaration
Public Function PrintOut ( _
    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
'Usage
Dim instance As XmlMappedRange
Dim From As Object
Dim To As Object
Dim Copies As Object
Dim Preview As Object
Dim ActivePrinter As Object
Dim PrintToFile As Object
Dim Collate As Object
Dim PrToFileName As Object
Dim returnValue As Object

returnValue = instance.PrintOut(From, _
    To, Copies, Preview, ActivePrinter, _
    PrintToFile, Collate, PrToFileName)
public Object PrintOut(
    Object From,
    Object To,
    Object Copies,
    Object Preview,
    Object ActivePrinter,
    Object PrintToFile,
    Object Collate,
    Object PrToFileName
)

Parameters

  • From
    Type: System.Object
    The number of the page at which to start printing. If this argument is omitted, printing starts at the beginning.
  • To
    Type: System.Object
    The number of the last page to print. If this argument is omitted, printing ends with the last page.
  • Copies
    Type: System.Object
    The number of copies to print. If this argument is omitted, one copy is printed.
  • Preview
    Type: System.Object
    true to have Microsoft Office Excel invoke print preview before printing the object; false (or omitted) to print the object immediately.
  • ActivePrinter
    Type: System.Object
    Sets the name of the active printer.
  • PrintToFile
    Type: System.Object
    true to print to a file. If PrToFileName is not specified, Excel prompts the user to enter the name of the output file.
  • PrToFileName
    Type: System.Object
    If 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 overall pages in the sheet or workbook.

Optional Parameters

For information on optional parameters, see Understanding Optional Parameters in Office Solutions.

Examples

The following code example uses the PrintOut method to print an XmlMappedRange to a file. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

Private Sub PrintToFile()
    Me.CustomerLastNameCell.Value2 = "Smith"
    Me.CustomerLastNameCell.PrintOut(Copies:=1, Preview:=True, PrintToFile:=True)
End Sub
private void PrintToFile()
{
    this.CustomerLastNameCell.Value2 = "Smith";
    this.CustomerLastNameCell.PrintOut(missing, missing, 1, true, missing,
        true, missing, missing);
}

Permissions

See Also

Reference

XmlMappedRange Class

XmlMappedRange Members

Microsoft.Office.Tools.Excel Namespace