workbook.printpreview function

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
I wanted to know the synatx of PrinPreview function which is part of Workbook object.
So I went to object viewer and found out that excel define this function as

Sub PrintPreview([EnableChanges])

I have 2 questions please

1) Why sub? the icon infront of the function is green box which means it is function not sub
2) Why the ( ) and why there is an argument (EnableChanges) passed? I can call this function like this

Thisworkbook.printpreview

so I did not have to pass anything? then why the syntax is showing it takes an argument. Thank you so much
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi
I wanted to know the synatx of PrinPreview function which is part of Workbook object.
So I went to object viewer and found out that excel define this function as

Sub PrintPreview([EnableChanges])

I have 2 questions please

1) Why sub? the icon infront of the function is green box which means it is function not sub
2) Why the ( ) and why there is an argument (EnableChanges) passed? I can call this function like this

Thisworkbook.printpreview

so I did not have to pass anything? then why the syntax is showing it takes an argument. Thank you so much

1 - The green icon means it is a Method .. A Method can be a a sub or a function
2- ([EnableChanges]) is between brackets . This means it is an Optional Argument which you can ignore ... In the case of the PrintPreview Method, if you ignore the argument it defaults to TRUE ie:Call PrintPreview(True) is the same as Call PrintPreview().
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top