Skip to content

Files

Latest commit

 

History

History
39 lines (25 loc) · 905 Bytes

Excel.Workbook.PersonalViewPrintSettings.md

File metadata and controls

39 lines (25 loc) · 905 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Workbook.PersonalViewPrintSettings property (Excel)
vbaxl10.chm199123
vbaxl10.chm199123
Excel.Workbook.PersonalViewPrintSettings
6e4a0a9c-4eb0-d8e1-e9ce-8e9e618996b4
05/29/2019
medium

Workbook.PersonalViewPrintSettings property (Excel)

True if print settings are included in the user's personal view of the shared workbook. Read/write Boolean.

Syntax

expression.PersonalViewPrintSettings

expression A variable that represents a Workbook object.

Example

This example removes print settings and filter and sort settings from the user's personal view of workbook two.

With Workbooks(2) 
 .PersonalViewListSettings = False 
 .PersonalViewPrintSettings = False 
End With

[!includeSupport and feedback]