PageBorderless Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies whether a print device prints to the edge of the media or provides an unprinted margin around the edge.
public enum class PageBorderless
public enum PageBorderless
type PageBorderless =
Public Enum PageBorderless
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The feature (whose options are represented by this enumeration) is set to an option not defined. |
Borderless | 1 | Borderless printing, that is, the device prints to the edge of the print media. |
None | 2 | Printing with a border, that is, the device provides an unprinted margin around the edge of the print media. |
Remarks
Most laser and inkjet printers do not support borderless printing. They require an unprinted margin to prevent toner from getting on the parts of the printer that move the paper. Many photographic printers, however, do support borderless printing.
Use the values of this type primarily for these purposes:
As members of the PageBorderlessCapability collection, which is a property of PrintCapabilities, these values indicate whether the device supports borderless printing.
As the value of the PageBorderless property of a PrintTicket, the value instructs the printer whether to print to the edge of the media.
The Unknown value is never used in properties of PrintCapabilities objects.
You should never set a PrintTicket property to Unknown. If some other PrintTicket producing application has created a PrintTicket document that sets the page borderless feature to an unrecognized option, then a PrintTicket object in your application that is constructed with that document will have Unknown as the value of the PageBorderless property.