PrintTicket.OutputColor Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yazıcının renk veya gri tonlarına sahip içeriği nasıl işlediğini gösteren bir değer alır veya ayarlar.
public:
property Nullable<System::Printing::OutputColor> OutputColor { Nullable<System::Printing::OutputColor> get(); void set(Nullable<System::Printing::OutputColor> value); };
public System.Printing.OutputColor? OutputColor { get; set; }
member this.OutputColor : Nullable<System.Printing.OutputColor> with get, set
Public Property OutputColor As Nullable(Of OutputColor)
Özellik Değeri
OutputColor Yazıcının renk veya gri tonlarına sahip içeriği nasıl işlediğini gösteren değer.
Özel durumlar
Çağıran kod, özelliğini numaralandırmada olmayan bir değere ayarlamaya OutputColor çalıştı.
Örnekler
Aşağıdaki örnekte, yazdırma işini yapılandırmak için bu özelliğin nasıl kullanılacağı gösterilmektedir.
// Use different PrintTickets for different FixedDocuments.
PrintTicket ptFD = new PrintTicket();
if (_firstDocumentPrintTicket <= 1)
{ // Print the first document in black/white and in portrait
// orientation. Since the PrintTicket at the
// FixedDocumentSequence level already specifies portrait
// orientation, this FixedDocument can just inherit that
// setting without having to set it again.
ptFD.PageOrientation = PageOrientation.Portrait;
ptFD.OutputColor = OutputColor.Monochrome;
_firstDocumentPrintTicket++;
}
else // if (_firstDocumentPrintTicket > 1)
{ // Print the second document in color and in landscape
// orientation. Since the PrintTicket at the
// FixedDocumentSequence level already specifies portrait
// orientation, this FixedDocument needs to set its
// PrintTicket with landscape orientation in order to
// override the higher level setting.
ptFD.PageOrientation = PageOrientation.Landscape;
ptFD.OutputColor = OutputColor.Color;
}
' Use different PrintTickets for different FixedDocuments.
Dim ptFD As New PrintTicket()
If _firstDocumentPrintTicket <= 1 Then
' orientation. Since the PrintTicket at the
' FixedDocumentSequence level already specifies portrait
' orientation, this FixedDocument can just inherit that
' setting without having to set it again.
ptFD.PageOrientation = PageOrientation.Portrait
ptFD.OutputColor = OutputColor.Monochrome
_firstDocumentPrintTicket += 1
Else ' if (_firstDocumentPrintTicket > 1)
' orientation. Since the PrintTicket at the
' FixedDocumentSequence level already specifies portrait
' orientation, this FixedDocument needs to set its
' PrintTicket with landscape orientation in order to
' override the higher level setting.
ptFD.PageOrientation = PageOrientation.Landscape
ptFD.OutputColor = OutputColor.Color
End If
Açıklamalar
null
Bu özelliğin değeri, bu özellik ayarının belirtilmediği anlamına gelir. Ayrıca, değer olduğunda null
, (bkzSaveTo. ve GetXmlStream) xml sürümleri PrintTicket bu özellik için herhangi bir işaretleme içermez.
Bu özellik, Yazdırma ŞemasınınPageOutputColor
anahtar sözcüğüne karşılık gelir.
özelliğini kullanarak OutputColorCapability yazıcının desteklediği seçenekleri test edebilirsiniz.