OutputColor 枚举

定义

指定如何打印包含彩色或灰阶的内容。

public enum class OutputColor
public enum OutputColor
type OutputColor = 
Public Enum OutputColor
继承
OutputColor

字段

Color 1

彩色打印输出。

Grayscale 2

灰度打印输出。

Monochrome 3

以单色打印且具有相同亮度的输出。

Unknown 0

该功能(其选项由此枚举表示)设置为未在 打印架构中定义的选项。

示例

以下示例演示如何使用此枚举设置 PrintTicket 值。

// 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

注解

出于以下目的,请使用此类型的值:

未知 值永远不会用于对象的属性PrintCapabilities

不应将属性设置为 PrintTicket Unknown。 如果其他 PrintTicket 一些生成应用程序创建了一个 PrintTicket 文档 ,该文档将输出颜色特征设置为无法识别的选项 (,则打印 架构) 中未定义的选项,则 PrintTicket 使用该文档构造的应用程序中的对象将 Unknown 具有该属性的值 OutputColor

PrintTicket虽然不能继承和PrintCapabilities类,但可以扩展打印架构,以识别未在类PrintCapabilitiesPrintTicket考虑的打印设备功能。 有关详细信息 ,请参阅如何:扩展打印架构并创建新的打印系统类

适用于

另请参阅