function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
saiarusaiaru 

what does it mean? , when value is '1' of Apexpages.currentPage().getParameters().get('print')

UC InnovationUC Innovation
That just means that the query string in your browser URL looks something like:

https://na1.salesforce.com/apex/some_vf_page?print=1

Apexpages.currentPage().getParameters().get('print') reads the "print" query parameter in the URL.