Share via


Presentation.PrintOptions Property

PowerPoint Developer Reference

Returns a PrintOptions object that represents print options that are saved with the specified presentation. Read-only.

Syntax

expression.PrintOptions

expression   A variable that represents a Presentation object.

Return Value
PrintOptions

Example

This example causes hidden slides in the active presentation to be printed, and it scales the printed slides to fit the paper size.

Visual Basic for Applications
  With Application.ActivePresentation
    With .PrintOptions
        .PrintHiddenSlides = True
        .FitToPage = True
    End With
    .PrintOut
End With

See Also