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.