PrintOptions Class
Specifies information about how a presentation is printed.
- Inheritance:
- System.ObjectPrintOptions
Remarks
For more information, see Print example.
Constructors
PrintOptions()
Initializes a new instance of the PrintOptions class.
PrintOptions(Stream)
Initializes a new instance of the PrintOptions class.
Parameters
xmlStream- System.IO.Stream
Initializes a new instance of the PrintOptions class by using an XML stream (that contains a System.Printing.PrintTicket document) that complies with the XML Print Schema.
Remarks
For more information, see Print example.
Properties
CopyCount
Gets or sets the number of copies of the presentation to print.
Property Value
- System.Int32
The number of copies of the presentation to print.
Exceptions
- System.ArgumentException
Value must be positive.
DocumentName
Gets or sets the name of the printed document in the print queue.
Default value is 'Presentation'.
Property Value
- System.String
The name of the printed document in the print queue.
FromSlide
Gets or sets the slide index of the first slide to print.
Property Value
- System.Int32
The slide index of the first slide to print.
Remarks
Presentation slides are zero-indexed meaning that first slide in the presentation has index 0 (zero).
Exceptions
- System.ArgumentException
Value cannot be negative.
ToSlide
Gets or sets the index of the last slide to print.
Property Value
- System.Int32
The index of the last slide to print.
Remarks
Use System.Int32.MaxValue value to print to the last slide.
Exceptions
- System.ArgumentException
Value cannot be lower than FromSlide.
UseAdvancedTextFormatting
Gets or sets a value indicating whether to do text layout using advanced text formatting implementation such as those from Windows Presentation Foundation (WPF) or HarfBuzz text-shaping engine, or to use the default primitive implementation.
Default value is false for improved performance and stability of the output because advanced text formatting is required only for complex scripts or advanced typography features.
public bool UseAdvancedTextFormatting { get; set; }Public Property UseAdvancedTextFormatting As BooleanProperty Value
- System.Boolean
true to do text layout using advanced text formatting implementation; otherwise false to use the default primitive implementation.