Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This topic is not current. For the most current information, see the Print Schema Specification.
Describes the characteristics of the color settings for the output.
Element Information
| Name | Value |
|---|---|
| Element Type |
Feature |
| Scoping Prefix |
Page |
| Notes |
None |
Structural Content
The XML structure of this element is:
<psf:Feature name="psk:PageOutputColor">
<psf:Property name="psf:SelectionType">
<psf:Value xsi:type="xs:string">psk:PickOne</psf:Value>
</psf:Property>
<psf:Option name="psk:_OptionName_">
<psf:Property name="psf:IdentityOption">
<psf:Value xsi:type="xs:string">_IdentityOptionValue_</psf:Value>
</psf:Property>
<psf:ScoredProperty name=psk:DeviceBitsPerPixel>
<psf:Value xsi:type="xs:integer">_DeviceBitsPerPixelValue_</psf:Value>
</psf:ScoredProperty>
<psf:ScoredProperty name=psk:DriverBitsPerPixel>
<psf:Value xsi:type="xs:integer">_DriverBitsPerPixelValue_</psf:Value>
</psf:ScoredProperty>
</psf:Option>
</psf:Feature>
Structure Variables
The following table outlines the characteristics of the variables defined in the XML structure.
| Name | Data type | Unit | Supported values | Summary |
|---|---|---|---|---|
| _OptionName_ |
string |
characters |
Valid fully qualified name as defined by Namespaces in XML. If no namespace is specified, default namespace is assumed. |
The name of the option. |
| _IdentityOptionValue_ |
string |
n/a |
True, False. |
Defines an Option which when selected would disable this feature. |
| _DeviceBitsPerPixelValue_ |
integer |
bits per pixel |
Greater than 0, less than maximum device support value. |
Numeric value indicating the number of bits per pixel of color data supported by the printer. |
| _DriverBitsPerPixelValue_ |
integer |
bits per pixel |
Greater than 0, less than maximum device support value. |
Numeric value indicating the number of bits per pixel that the core driver should use for its bitmap rendering buffer. |
Extensible Markup Language (XML) Content
The public Print Schema keywords are defined in the https://schemas.microsoft.com/windows/2003/08/printing/printschemakeywords namespace. The public Extensible Markup Language (XML) content for this keyword is defined below:
<psf:Feature name="psk:PageOutputColor">
<psf:Property name="psf:SelectionType">
<psf:Value xsi:type="xs:string">psk:PickOne</psf:Value>
</psf:Property>
<!-- Specifies the output should be in color. -->
<psf:Option name="psk:Color">
<psf:ScoredProperty name="psk:DeviceBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
<psf:ScoredProperty name="psk:DriverBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
</psf:Option>
<!-- Specifies the output should be in grayscale. -->
<psf:Option name="psk:Grayscale">
<psf:ScoredProperty name="psk:DeviceBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
<psf:ScoredProperty name="psk:DriverBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
</psf:Option>
<!-- Specifies the output should be in monochrome (Black). -->
<psf:Option name="psk:Monochrome">
<psf:ScoredProperty name="psk:DeviceBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
<psf:ScoredProperty name="psk:DriverBitsPerPixel">
<psf:Value xsi:type="xs:integer">_Undefined_</psf:Value>
</psf:ScoredProperty>
</psf:Option>
</psf:Feature>