PrintTicket Konstruktoren

Definition

Initialisiert eine neue Instanz der PrintTicket-Klasse.

Überlädt

PrintTicket()

Initialisiert eine neue Instanz der PrintTicket-Klasse.

PrintTicket(Stream)

Initialisiert eine neue Instanz der PrintTicket-Klasse mit einem XML-Stream (der ein PrintTicket-Dokument enthält), der dem XML-Druckschema entspricht.

PrintTicket()

Initialisiert eine neue Instanz der PrintTicket-Klasse.

public:
 PrintTicket();
public PrintTicket ();
Public Sub New ()

Beispiele

Im folgenden Beispiel wird gezeigt, wie Sie diesen Konstruktor beim Zusammenführen von zwei Drucktickets verwenden.

/// <summary>
/// Changes the user-default PrintTicket setting of the specified print queue.
/// </summary>
/// <param name="queue">the printer whose user-default PrintTicket setting needs to be changed</param>
static private void ChangePrintTicketSetting(PrintQueue queue)
{
    //
    // Obtain the printer's PrintCapabilities so we can determine whether or not
    // duplexing printing is supported by the printer.
    //
    PrintCapabilities printcap = queue.GetPrintCapabilities();

    //
    // The printer's duplexing capability is returned as a read-only collection of duplexing options
    // that can be supported by the printer. If the collection returned contains the duplexing
    // option we want to set, it means the duplexing option we want to set is supported by the printer,
    // so we can make the user-default PrintTicket setting change.
    //
    if (printcap.DuplexingCapability.Contains(Duplexing.TwoSidedLongEdge))
    {
        //
        // To change the user-default PrintTicket, we can first create a delta PrintTicket with
        // the new duplexing setting.
        //
        PrintTicket deltaTicket = new PrintTicket();
        deltaTicket.Duplexing = Duplexing.TwoSidedLongEdge;

        //
        // Then merge the delta PrintTicket onto the printer's current user-default PrintTicket,
        // and validate the merged PrintTicket to get the new PrintTicket we want to set as the
        // printer's new user-default PrintTicket.
        //
        ValidationResult result = queue.MergeAndValidatePrintTicket(queue.UserPrintTicket, deltaTicket);

        //
        // The duplexing option we want to set could be constrained by other PrintTicket settings
        // or device settings. We can check the validated merged PrintTicket to see whether the
        // the validation process has kept the duplexing option we want to set unchanged.
        //
        if (result.ValidatedPrintTicket.Duplexing == Duplexing.TwoSidedLongEdge)
        {
            //
            // Set the printer's user-default PrintTicket and commit the set operation.
            //
            queue.UserPrintTicket = result.ValidatedPrintTicket;
            queue.Commit();
            Console.WriteLine("PrintTicket new duplexing setting is set on '{0}'.", queue.FullName);
        }
        else
        {
            //
            // The duplexing option we want to set has been changed by the validation process
            // when it was resolving setting constraints.
            //
            Console.WriteLine("PrintTicket new duplexing setting is constrained on '{0}'.", queue.FullName);
        }
    }
    else
    {
        //
        // If the printer doesn't support the duplexing option we want to set, skip it.
        //
        Console.WriteLine("PrintTicket new duplexing setting is not supported on '{0}'.", queue.FullName);
    }
}
''' <summary>
''' Changes the user-default PrintTicket setting of the specified print queue.
''' </summary>
''' <param name="queue">the printer whose user-default PrintTicket setting needs to be changed</param>
Private Shared Sub ChangePrintTicketSetting(ByVal queue As PrintQueue)
    '
    ' Obtain the printer's PrintCapabilities so we can determine whether or not
    ' duplexing printing is supported by the printer.
    '
    Dim printcap As PrintCapabilities = queue.GetPrintCapabilities()

    '
    ' The printer's duplexing capability is returned as a read-only collection of duplexing options
    ' that can be supported by the printer. If the collection returned contains the duplexing
    ' option we want to set, it means the duplexing option we want to set is supported by the printer,
    ' so we can make the user-default PrintTicket setting change.
    '
    If printcap.DuplexingCapability.Contains(Duplexing.TwoSidedLongEdge) Then
        '
        ' To change the user-default PrintTicket, we can first create a delta PrintTicket with
        ' the new duplexing setting.
        '
        Dim deltaTicket As New PrintTicket()
        deltaTicket.Duplexing = Duplexing.TwoSidedLongEdge

        '
        ' Then merge the delta PrintTicket onto the printer's current user-default PrintTicket,
        ' and validate the merged PrintTicket to get the new PrintTicket we want to set as the
        ' printer's new user-default PrintTicket.
        '
        Dim result As ValidationResult = queue.MergeAndValidatePrintTicket(queue.UserPrintTicket, deltaTicket)

        '
        ' The duplexing option we want to set could be constrained by other PrintTicket settings
        ' or device settings. We can check the validated merged PrintTicket to see whether the
        ' the validation process has kept the duplexing option we want to set unchanged.
        '
        If result.ValidatedPrintTicket.Duplexing = Duplexing.TwoSidedLongEdge Then
            '
            ' Set the printer's user-default PrintTicket and commit the set operation.
            '
            queue.UserPrintTicket = result.ValidatedPrintTicket
            queue.Commit()
            Console.WriteLine("PrintTicket new duplexing setting is set on '{0}'.", queue.FullName)
        Else
            '
            ' The duplexing option we want to set has been changed by the validation process
            ' when it was resolving setting constraints.
            '
            Console.WriteLine("PrintTicket new duplexing setting is constrained on '{0}'.", queue.FullName)
        End If
    Else
        '
        ' If the printer doesn't support the duplexing option we want to set, skip it.
        '
        Console.WriteLine("PrintTicket new duplexing setting is not supported on '{0}'.", queue.FullName)
    End If
End Sub

Gilt für:

PrintTicket(Stream)

Initialisiert eine neue Instanz der PrintTicket-Klasse mit einem XML-Stream (der ein PrintTicket-Dokument enthält), der dem XML-Druckschema entspricht.

public:
 PrintTicket(System::IO::Stream ^ xmlStream);
public PrintTicket (System.IO.Stream xmlStream);
new System.Printing.PrintTicket : System.IO.Stream -> System.Printing.PrintTicket
Public Sub New (xmlStream As Stream)

Parameter

xmlStream
Stream

Ein XML-Stream, der einen Druckauftrag beschreibt und dem Druckschema entspricht.

Ausnahmen

xmlStream ist null.

xmlStream ist kein gültiges XML.

Hinweise

Der Konstruktor setzt die Lese-/Schreibposition des Datenstroms nicht auf seine ursprüngliche Position zurück. Dementsprechend sollten Sie ihn sofort nach dem Aufruf des Konstruktors zurücksetzen.

Das gesamte PrintTicket-Dokument wird in einem nicht öffentlichen Feld im Objekt gespeichert, einschließlich der DARIN enthaltenen XML-Elemente, die weniger häufige Features ausdrücken, die nicht durch eine der öffentlichen Eigenschaften der PrintTicket -Klasse dargestellt werden. Wenn der Treiber, der das PrintTicket-Dokument erstellt hat, eine private Erweiterung des Druckschemas verwendet, wird dieses privat definierte Markup auch als Teil des nicht öffentlichen PrintTicket-Dokuments gespeichert.

Die privaten Teile des Dokuments, sofern vorhanden, werden vom Konstruktor nicht überprüft, aber alle vom Druckschema definierten Teile werden überprüft, einschließlich der Teile, die durch keine der öffentlichen Eigenschaften der PrintTicket Klasse dargestellt werden. Dementsprechend kann auch FormatException dann ausgelöst werden, wenn das gesamte XML-Markup, das den öffentlichen Eigenschaften entspricht, gültig ist.

Wenn eine der Eigenschaften von PrintTicket in geschrieben wird, wird auch dieses nicht öffentliche PrintTicket-Dokument geändert.

Es ist dieses nicht öffentliche PrintTicket-Dokument, das von den GetXmlStream Methoden und SaveTo zurückgegeben wird.

Weitere Informationen

Gilt für: