title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.PrintCommunication property (Excel) |
vbaxl10.chm133323 |
|
|
8b8ad1c5-1999-d733-44f4-734b7a388986 |
04/05/2019 |
medium |
Specifies whether communication with the printer is turned on. Read/write Boolean.
expression.PrintCommunication
expression A variable that returns an Application object.
True if communication with the printer is turned on; otherwise, False.
Set the PrintCommunication property to False to speed up the execution of code that sets PageSetup properties.
Set the PrintCommunication property to True after setting properties to commit all cached PageSetup commands.
The following example suspends communication with the printer while setting PageSetup properties.
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
Application.PrintCommunication = True
[!includeSupport and feedback]