This topic has not yet been rated - Rate this topic

PrintTicket Class

Defines the settings of a print job.

System.Object
  System.Printing.PrintTicket

Namespace:  System.Printing
Assembly:  ReachFramework (in ReachFramework.dll)
XMLNS for XAML: Not mapped to an xmlns.
public sealed class PrintTicket : INotifyPropertyChanged
<PrintTicket .../>

The PrintTicket type exposes the following members.

  Name Description
Public method PrintTicket() Initializes a new instance of the PrintTicket class.
Public method PrintTicket(Stream) Initializes a new instance of the PrintTicket class by using an XML stream (that contains a PrintTicket document) that complies with the XML Print Schema.
Top
  Name Description
Public property Collation Gets or sets a value indicating whether the printer collates its output.
Public property CopyCount Gets or sets the number of copies for the print job.
Public property DeviceFontSubstitution Gets or sets a value indicating whether the printer substitutes device-based fonts for computer-based fonts on the print job.
Public property Duplexing Gets or sets a value indicating what kind of two-sided printing, if any, the printer uses for the print job.
Public property InputBin Gets or sets a value indicating what input bin (paper tray) to use.
Public property OutputColor Gets or sets a value indicating how the printer handles content that has color or shades of gray.
Public property OutputQuality Gets or sets a value indicating the quality of output for the print job.
Public property PageBorderless Gets or sets a value indicating whether the device prints content to the edge of the media or leaves an unprinted margin around the edge.
Public property PageMediaSize Gets or sets the page size for the paper (or other media) that a printer uses for a print job.
Public property PageMediaType Gets or sets a value indicating what sort of paper or media the printer uses for the print job.
Public property PageOrder Gets or sets a value indicating whether the printer prints multiple pages back-to-front or front-to-back.
Public property PageOrientation Gets or sets a value indicating how the page content is oriented for printing.
Public property PageResolution Gets or sets the level of page resolution that the printer uses for a print job.
Public property PageScalingFactor Gets or sets the percentage by which the printer enlarges or reduces the print image on a page.
Public property PagesPerSheet Gets or sets the number of pages that print on each printed side of a sheet of paper.
Public property PagesPerSheetDirection Gets or sets a value indicating how a printer arranges multiple pages that print on each side of a sheet of paper.
Public property PhotoPrintingIntent Gets or sets a value indicating in qualitative terms the level of quality the printer uses to print a photograph.
Public property Stapling Gets or sets a value indicating whether, and where, a printer staples multiple pages.
Public property TrueTypeFontMode Gets or sets a value indicating how the printer handles text that uses TrueType fonts.
Top
  Name Description
Public method Clone Creates a modifiable clone of this PrintTicket, making deep copies of this object's values.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method GetXmlStream Returns a MemoryStream object that represents the property values of a PrintTicket as an XML stream that conforms to the Print Schema.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method SaveTo Saves the PrintTicket settings to a Stream object by using an XML format that conforms to the Print Schema.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public event PropertyChanged Occurs when any property of the PrintTicket changes.
Top

A PrintTicket object is an easy-to-work-with representation of a certain type of XML document called a PrintTicket document. The latter is a set of instructions telling a printer how to set its various features (such as duplexing, collating, and stapling). For example, to instruct the printer to turn on its stapler and staple print jobs in the upper left corner, the document would have a <JobStapleAllDocuments … > element that specifies StapleTopLeft. The element is, in turn, represented by the Stapling property of the PrintTicket object. The PrintTicket document must conform to the Print Schema.

The PrintTicket class enables your application to configure the printer's features without having to engage in any direct writing of XML Stream objects.

All of the most popular features of home and business file and photo printers are represented by properties of PrintTicket the class. But the Print Schema defines many more, less common, features and it can be extended to handle features of specialty printing devices. So, although the PrintTicket and PrintCapabilities classes cannot be inherited, you can extend the Print Schema to recognize print device features that are not accounted for in the PrintTicket or PrintCapabilities classes. For more information see How to: Extend the Print Schema and Create New Print System Classes.

Note   When the PrintTicket object is created with the constructor that takes a PrintTicket document (as a Stream) parameter, that entire document is stored in a non-public field in the object, including the XML elements within it that express less common features that are not represented by any of the public properties of the PrintTicket class. In fact, if the driver that produced the PrintTicket document is using a private extension of the Print Schema, that privately defined markup is also stored as part of the non-public PrintTicket document.

The following example shows how to determine the capabilities of a specific printer and how to configure a print job to take advantage of them.


// ---------------------- GetPrintTicketFromPrinter -----------------------
/// <summary>
///   Returns a PrintTicket based on the current default printer.</summary>
/// <returns>
///   A PrintTicket for the current local default printer.</returns>
private PrintTicket GetPrintTicketFromPrinter()
{
    PrintQueue printQueue = null;

    LocalPrintServer localPrintServer = new LocalPrintServer();

    // Retrieving collection of local printer on user machine
    PrintQueueCollection localPrinterCollection =
        localPrintServer.GetPrintQueues();

    System.Collections.IEnumerator localPrinterEnumerator =
        localPrinterCollection.GetEnumerator();

    if (localPrinterEnumerator.MoveNext())
    {
        // Get PrintQueue from first available printer
        printQueue = (PrintQueue)localPrinterEnumerator.Current;
    }
    else
    {
        // No printer exist, return null PrintTicket
        return null;
    }

    // Get default PrintTicket from printer
    PrintTicket printTicket = printQueue.DefaultPrintTicket;

    PrintCapabilities printCapabilites = printQueue.GetPrintCapabilities();

    // Modify PrintTicket
    if (printCapabilites.CollationCapability.Contains(Collation.Collated))
    {
        printTicket.Collation = Collation.Collated;
    }

    if ( printCapabilites.DuplexingCapability.Contains(
            Duplexing.TwoSidedLongEdge) )
    {
        printTicket.Duplexing = Duplexing.TwoSidedLongEdge;
    }

    if (printCapabilites.StaplingCapability.Contains(Stapling.StapleDualLeft))
    {
        printTicket.Stapling = Stapling.StapleDualLeft;
    }

    return printTicket;
}// end:GetPrintTicketFromPrinter()


.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ