This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Download Microsoft Edge
More info about Internet Explorer and Microsoft Edge
Specifies whether communication with the printer is turned on. Read/write
Boolean
.
Syntax
expression
.
PrintCommunication
expression
A variable that returns an
Application
object.
Return value
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.
Example
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.