Print range

Has anyone figured out how to define a print range. Specifically, I'd like to view and print the rightmost (totals) column and the first Titles column? In Appleworks it was rather simple, Options/Set Print Range ~ lock title position.
My accountant is only interested in the totals column, not the daily activity.
That, plus not being able to lock the A column might be a deal breaker. Appleworks is old and not OS X like, but still works like a charm.

There's not even a functional equivalent of "print selection" that I can find in Numbers. Pretty lame. I don't use the power features of Excel, but I think "Print Selection" is a pretty basic one to include in Numbers. So for now, I have to make sure the block of rows I want breaks on page breaks and choose to print only the page numbers I want.
Anyone have any other hack solutions on how to "Print Selected Rows"?
I have to submit a certain set of rows each week as a report (print to PDF). But for now, to speed up this workflow, I'm going to have to submit all rows. Seems like a major limitation, even with the understanding this is a 1.0 product.

Similar Messages

  • Problems with  print range from 1 to 9999 during printing

    Hi All,
    In my project i am printing the datas in a JTable by a click of the button.I have used the following link:-
    http://developer.java.sun.com/developer/onlineTraining/Programming/JDCBook/advprint.html
    to print that data from the JTable.The main problem i have is that
    1) The font size in which the tableheader and tabledatas printed are so small.So that i need to increase the font size for both tableheader and tabledatas?
    2)When i click the printButton for printing it opens a dialog box showing print range from 1 to 9999. And in the pages from 1 to 9999.
    I don't want this.I want only 1 to 1.I know that by using Pageable
    interface u can change it.But i don't know how to do it
    Any one help me to solve this 2 problems i will be very thankful to u.It is Urgent.For ur reference i will provide my Code:-
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.print.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.Dimension;
    import java.io.*;
    public class PrintReportPanels extends JPanel implements Printable
    JTable tableView;
    String aLine="";
    DefaultTableModel model;
    Vector columnNames = new Vector();
    Vector data = new Vector();
    JScrollBar jsb = new JScrollBar(JScrollBar.HORIZONTAL);
    JScrollBar jsb1 = new JScrollBar(JScrollBar.VERTICAL);
    JPanel southPanel=new JPanel();
    JPanel printPanel=new JPanel();
    JButton printButton=new JButton();
    int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    private Font fnt=new Font("Arial",Font.PLAIN,20);//Not working for increasing the font size
    public PrintReportPanels()
         try
    this.setLayout(new BorderLayout());
    UIManager.put("ScrollBar.track",Color.red);
    UIManager.put("ScrollBar.thumb",Color.blue);
         FileInputStream fin = new FileInputStream("Spooler.txt");
         BufferedReader br = new BufferedReader(new InputStreamReader(fin));
         // extract column names
         StringTokenizer st1 = new StringTokenizer(br.readLine());
         while( st1.hasMoreTokens() )
         columnNames.addElement(st1.nextToken());
         }               // extract data
         while((aLine = br.readLine())!=null) //br.readLine() which contains the Spooler.txt datas is assigned to aLine
         StringTokenizer st2 = new StringTokenizer(aLine);
         Vector row = new Vector();
         while(st2.hasMoreTokens())
         row.addElement(st2.nextToken());
         data.addElement( row );
         br.close();
         catch (Exception e)
              e.printStackTrace();
    model = new DefaultTableModel(data,columnNames);
    tableView = new JTable(model);
    JScrollPane jsp = new JScrollPane(tableView);
    this.add(jsp,BorderLayout.CENTER);
    this.add(jsb,BorderLayout.SOUTH);
    this.add(jsb1,BorderLayout.EAST);
    this.add(southPanel,BorderLayout.SOUTH);
    southPanel.setLayout(new FlowLayout());
    ImageIcon ic=new ImageIcon("print.gif");
    printButton.setIcon(ic);
    printButton.setBackground(Color.white);
    printPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
    printPanel.add(printButton);
    southPanel.add(printPanel);
    this.validate();
    this.repaint();
    printButton.addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent evt) {
         PrinterJob pj=PrinterJob.getPrinterJob();
         pj.setPrintable(PrintReportPanels.this);
         pj.printDialog();
         try{
              pj.print();
         }catch (Exception PrintException) {}
    public int print(Graphics g, PageFormat pageFormat,int pageIndex) throws PrinterException
         Graphics2D g2 = (Graphics2D) g;
         g2.setColor(Color.black);
         g2.setFont(fnt);
         int fontHeight=g2.getFontMetrics().getHeight();
         int fontDesent=g2.getFontMetrics().getDescent();
         //leave room for page number
         double pageHeight = pageFormat.getImageableHeight()-fontHeight;
         double pageWidth = pageFormat.getImageableWidth();
         double tableWidth = (double) tableView.getColumnModel().getTotalColumnWidth();
         double scale = 1;
         if (tableWidth >= pageWidth) {
              scale = pageWidth / tableWidth;
         double headerHeightOnPage=
    tableView.getTableHeader().getHeight()*scale;
         double tableWidthOnPage=tableWidth*scale;
         double oneRowHeight=(tableView.getRowHeight()+
    tableView.getRowMargin())*scale;
         int numRowsOnAPage=
    (int)((pageHeight-headerHeightOnPage)/oneRowHeight);
         double pageHeightForTable=oneRowHeight*numRowsOnAPage;
         int totalNumPages= (int)Math.ceil((
    (double)tableView.getRowCount())/numRowsOnAPage);
         if(pageIndex>=totalNumPages)
    return NO_SUCH_PAGE;
         g2.translate(pageFormat.getImageableX(),
    pageFormat.getImageableY());
         g2.drawString("Page: "+(pageIndex+1),(int)pageWidth/2-35, //For printing the page no. at the bottom
    (int)(pageHeight+fontHeight-fontDesent));//bottom center
         g2.translate(0f,headerHeightOnPage);
         g2.translate(0f,-pageIndex*pageHeightForTable);
         //If this piece of the table is smaller than the size available,
         //clip to the appropriate bounds.
         if (pageIndex + 1 == totalNumPages)
    int lastRowPrinted = numRowsOnAPage * pageIndex;
    int numRowsLeft = tableView.getRowCount() - lastRowPrinted;
    g2.setClip(0, (int)(pageHeightForTable * pageIndex),
    (int) Math.ceil(tableWidthOnPage),
    (int) Math.ceil(oneRowHeight * numRowsLeft));
         //else clip to the entire area available.
         else{
    g2.setClip(0, (int)(pageHeightForTable*pageIndex),
    (int) Math.ceil(tableWidthOnPage),
    (int) Math.ceil(pageHeightForTable));
         g2.scale(scale,scale);
         tableView.paint(g2);
         g2.scale(1/scale,1/scale);
         g2.translate(0f,pageIndex*pageHeightForTable);
         g2.translate(0f, -headerHeightOnPage);
         g2.setClip(0, 0,(int) Math.ceil(tableWidthOnPage),
    (int)Math.ceil(headerHeightOnPage));
         g2.scale(scale,scale);
         tableView.getTableHeader().paint(g2);//paint header at top
         return Printable.PAGE_EXISTS;
    public static void main(String[] args)
         JFrame frame=new JFrame();
         RepaintManager.currentManager(frame).setDoubleBufferingEnabled(false);
         JPanel panel=new PrintReportPanels();
         frame.getContentPane().add(panel);
         frame.setSize(800,600);
         frame.setVisible(true);
    Pls. do provide the reply and tell me where i go wrong.I will be waiting for ur reply.It is very Urgent.
    Thanx,
    m.ananthu

    Hi conner,
    1) My font size problem is over i have used the tablename.setFont(new Font("Arial",Font.PLAIN,20)).It does change the font size of the JTable contents but the JTable Header still remains the same.I want to change the font size of the JTable header as well.How to do it?
    2)According to my second problem can u provide the code of how to change the page range from 1 - 9999 to 1-1?So that i will be very thankful to u.
    Thanx,
    m.ananthu

  • Why am I not able to use "selection" as a print range option when using the print preview feature? Is this facility available or am I doing something wrong?

    Having seleted some text on a web page which is the only information I would like to print, I seem to be unable to preview what the printed page will look like using the "Selection" option in the Print Range section of the "Print" Menu from the Print Preview window. The radio button for "Selection" is not selectable!
    I am able to do this using Internet Explorer, which is probably my main reason for using that browser but would like to use a similar feature in Firefox

    That connection is supported for tethering....
    Barry

  • Print range with JavaScript does not work on Mac

    Problem: I am using this.print({bUI: true, nStart: 1, nEnd: 2, bSilent: false}); to print a range of pages. Works perfectly on Reader 8 and 9 and AcroPro 8 in Windows XP. Works in AcroPro 8 on OSX 10.4 but not in Reader 8.1.2 or 9 in 10.4 or Leopard.
    What happens: the print dialogue opens, the range is selected correctly and the pages radio button is selected, but the preview shows the first page, and clicking to print prints the whole document.
    Workaround: making any change - even adding and deleting a space - to the print range in the print dialogue immediately causes the preview to switch to the desired pages, and the range now prints as desired.
    Have submitted this as a bug, but wondered if there is another way to do this from a button, as we're on a deadline.
    Thanks

    See this: http://windows.microsoft.com/en-US/windows-vista/Take-a-screen-capture-print-screen
    OR http://www.sevenforums.com/general-discussion/75540-print-screen.html
    Granted this is not directly for Windows 8 but give it a try.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • How to enable printer range selection in printer Dialog?

    I try to do the printer setup, when I do
    Code:
    job.setPageable (book);
    if (job.printDialog ()) {
    try {
    job.print ();
    catch (PrinterException ex) {
    ex.printStackTrace ();
    note: job is PrinterJob.
    The printer setup that shown, it disable the selection mode in printer range. Anyone know how to enable it or do print by text selection (highlight).
    Thank you in advance.

    If you set up a JFileChooser dialog you can set the setMultiSelectionEnabled to true then the JFileChooser returns an array of files.
    eg.
    File files[];
    JFilechooser chooser new JFileChooser();
    chooser.setMultiSelectionEnabled(true);
    if (result == JFileChooser.APPROVE_OPTION) {
    files = chooser.getSelectedFiles();

  • When printing a highlighted (selected) print range from an internet item pulled up through Firefox, the first line of the selected range is not printing or is partially cut off.

    When printing a highlighted (selected) print range from an internet item pulled up through Firefox, the first line of the selected range is not printing or is partially cut off. This is not an issue with my printer, as printer prints the whole selected print range when using Internet Explorer or Word Doc applications. The problem only happens when using Firefox. Please advise on how to fix this. Is this a settings issue or do I need to download and update? Thx

    * [[Printing a web page]]
    * [[Firefox prints incorrectly]]
    Check and tell if its working.

  • Print range does not print the last page in the range.

    Adobe Reader for New IPAD - The print range function does not print the last page in the range. For example, if you enter a print range of 2-18, pages 2-17 print and page 18 does not print.  Also, if you enter a print range of 9-9, page 8 prints and page 9 does not print.

    I have the Epson 4540 printer. I don't know for sure if it connects via AirPrint.  I didn't do any thing to set up Air Print.  The printer is attached directly to my network router and it shows up IPad apps.  I have not printed docs from other apps, but I will give it try and let you know.
    Christopher J. Bilcz
    [email protected]

  • Printer Dialog Box with No. of copies & Print Range.

    I am trying to print a report(oracle) from a form (using a custom PRINT button) and wanted the printer dialog box to appear, for which I used the "WIN_API_DIALOG.SELECT_PRINTER(prtname, port, true)" API in the "When button pressed trigger".
    But this API only takes care of a printer change, my issue here is how do I capture the changes pertaining to Orientation, Number of Copies, Print range etc. I know there is the "Properties - Advanced" option in the printer dialog box but changing values there doesn't help, as I had already mentioned the API passes only printer name.
    So, if any one has faced a similar issue and has a solution,
    PLEASE RESPOND IMMEDIATELY !!!
    Thanks

    Unfortunatley there is no way to give Forms that information. The printer dialog in D2kwutil is only designed to get the printer name / port, none of the other information. Even it it could Forms does not expose an API to effect the PRINT; built-in.

  • How do I create a print range:  in Numbers

    I wish to highlight a number of cells from an accounts document for printing those cell only
    I do not wish to print the whole doucment and show all accounts information.
    ( Appleworks had this useful function )
    Many thanks

    Hello imobl
    You forgot to write that it may be useful to apply Paste Values, not a simple Paste.
    My best scheme is the one which was often described by Jerrold Green :
    Select a range
    Copy
    enter the Preview app
    Create a new doc from the clipboard
    Print this new document.
    Yvan KOENIG (VALLAURIS, France) mardi 25 octobre 2011 19:43:05
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to set a print range

    I am familiar with Appleworks and Clarisworks spreadsheets, where one can select a part of a spreadsheet by setting printrange, and only printing the selected part, which I find useful.  But how do I do that or similar in Numbers?  It seems that if my spreadsheet in Numbers is divided into sheets, I have to print at least a complete sheet and it is not possible to print just part of a spreadsheet.  Or is it possible? Help and advice please!
    Peter

    Several ways:
    Go View > Show Print view, so that you can see what will appear on each page.
    Set Content scaling using the slider at the bottom of the window so that the area you want to print fills the page.
    Select, then Copy the group of cells you want to print, open Preview, then press command-N or go File > New from clipboard. Print.
    Select, then Copy the group of cells you want to print, Add a new Sheet to your document. Delete the default Table that comes with the new sheet. Paste. Your selection will appear on the sheet as a new table. Position and sizeas you wish. Print the sheet.
    If you are going to print the same set of cells on several occasions, create a table to copy the content of that set. Move the Table to a separate Sheet, where it will continually update. To print, switch to the sheet containing the table. Print.
    Regards,
    Barry

  • Printing ranges for smartforms

    dear all,
    i have a task which requires me to find the ranges in a set of numbers..
    sample data: R09004016, R020185M01, R050015M<M04, R09004018, R020185M03, R050015M<M05,
    R09004017, R020185M02, R050015M<M06, R020185M12, R09004002
    these are the norsec numbers... which are needed to group them together if these numbers have the same characteristics..
    the expected output would be
    R09004002, R09004016 TO R09004018, R020185M01 TO R020185M03, R020185M12,
    R050015M<M04 TO R050015M<M06 
    my question is, how do i put these norsec numbers into ranges...? and the problem is that some norsec numbers have characters inside...the norsec numbers are alphanumeric..
    any help is very much appreciated..thanks..
    urgent.

    Hi
       Please check if below code can help to lead you.
    data: begin of itab occurs 0,
            fld1(20) type c,
          end of itab.
    data: begin of it_out occurs 0,
            text(50) type c,
          end of it_out.
    itab-fld1 = 'R09004016'.
    append itab.
    itab-fld1 = 'R020185M01'.
    append itab.
    itab-fld1 = 'R050015M<M04'.
    append itab.
    itab-fld1 = 'R09004018'.
    append itab.
    itab-fld1 = 'R020185M03'.
    append itab.
    itab-fld1 = 'R050015M<M05'.
    append itab.
    itab-fld1 = 'R09004017'.
    append itab.
    itab-fld1 = 'R020185M02'.
    append itab.
    itab-fld1 = 'R050015M<M06'.
    append itab.
    itab-fld1 = 'R020185M12'.
    append itab.
    itab-fld1 = 'R09004002'.
    append itab.
    data: from(20) type n,
          to(20) type n.
    data: from_c like itab-fld1, "type c,
          to_c like itab-fld1. "type c.
    sort itab by fld1.
    loop at itab.
         if sy-tabix eq 1.
            from = itab-fld1.
            from_c = itab-fld1.
         else.
            perform compare using itab-fld1 to changing from.
         endif.
         to = itab-fld1.
         to_c = itab-fld1.
         at last.
            perform compare using to to changing from.
         endat.
    endloop.
    loop at it_out.
        write:/ it_out-text.
    endloop.
    form compare using p_fld1 p_to changing p_from.
    data: l_to(20) type n.
    data: l_fld(20) type n.
        l_to = p_to + 1.
        l_fld = p_fld1.
        if l_fld ne l_to.
           if p_to > p_from.
              concatenate from_c 'TO' to_c into it_out-text
                          separated by space.
              append it_out.
           else.
              move from_c to it_out-text.
              append it_out.
           endif.
           p_from = itab-fld1.
           from_c = itab-fld1.
         endif.
    endform.
    Kind Regards
    Eswar

  • Adobe X Printing page ranges in pdf's with multiple sections

    I'm trying to print a page range in a document that is divided into sections that start over with page 1 or page i, and using an absolute page range doesn't work.  For example, the document has an initial cover page up to the Contents page numbered i - vi, then the Contents section is numbered i - iv, then the Figures section is numbered 1 - 2, then the Chapter 1 section is numbered 1 - 6, Chapter 2 is 1 - 14, etc.
    In Adobe X, the default toolbar with the print, mail icons, then the up and down arrows, is followed by a box with the "page number" in it followed by a page range in (); for ex., the box has '1' in it and the range shows (15 of 94).  If I was viewing the title page, the box would have 'i' in it followed by (1 of 94), etc.
    When I try to print, the dialog menu shows the "Print Range" of "All", "Current Page", and "Pages".  If I select "Pages" and enter the absolute number from the range in () like (15 of 94), and I want to print absolute page 15-35, and I enter that in the "Pages" box as 15-35, what I get is a section further in the document that I don't want at all, and not the desired page range.  In fact, since the sections all restart the page numbering, I can't even find the starting page because the print function is totally confused about what page I mean.
    In previous Acrobat versions, I had no trouble using the absolute page range since that is obviously required to get the desired range; i.e., Acrobat can't know what section I want, so for ex. putting page 1-10 can mean any section with 10 pages.  I don't know how to use a page range for sections, like 2.1 - 2.4 or 2-1 to 2-4 because the Page range box doesn't recognize that.  And again, the absolute page ranges don't work either.
    The only way to print this document is to select the "All" button.  If the doc is 1000 pages long, I don't want to waste all that paper!!  Please help!

    You can use the thumbnails pane and print pages selected within the pane.
    Have you tried other strings like:
    1 - 6 , 1 - 13

  • Issue printing PDF Packages

    I'm having issues printing PDF Packages.Clients have contacted us stating that our PDF Packages don't print properly. Essentially they were only able to print the "coversheet" and nothing else. I ran some test scenarios and noted that PDF Packages print feature behaved differently depending on several criterias:
    how it was viewed (ie: desktop, Firefox browser, IE browser)
    what Adobe Reader Plugin
    what command was used to access print feature (ie: file>print, ctrl + P, print icon)
    So far I've noticed that Adobe Reader utilizes two versions of the Print Dialog Box. The first one shows four choices for "Print Range" (All, Current View, Current Page, Pages...) seems to always be misconfigured and does not print as intended. The second one I've noticed seems to limit your Print Range choices (All, Current View) which usually works.
    This seems to be an Adobe bug. This Print Bug exists on both Acrobat 8 and 9, and the bug may or may not exist depending on how you view the "PDF Package" (ie: Desktop, Firefox, IE).
    If you open the PDF Package on your desktop and view via Adobe Reader for the most part it prints as expected for "Print Current Documents" or "Print All Documents". Although the "Print Range" is misaligned (ie: "Print All" behaves as "Current View", "Current View" behaves as "Current Page".
    If you open the PDF Package on a browser with an Adobe Reader plugin, a different scenario occurs.
    You might experience that you're locked into printing only the "coversheet" of the PDF Package.
    And again your "Print Range" might be misaligned.
    In Adobe Reader 8, a dropdown appeared when you selected "File>Print" or the "Print Icon". The dropdown then gave you an option to "Print Current Documents" or "Print All Documents". Which basically provided you an option to print the entire "PDF Package" or choose to print only a section of the "PDF Package".
    In Adobe Reader 9, the option to choose between "Print Current Documents" or "Print All Documents" was removed.
    In fact I started to document the instances to see if its an isolated issue and it looks like it fails to print (as intended) 60% of the time. Of the 40% that does print as intended... it looks like half the time the "Print Range" is misconfigured.
    Also, I've noticed that Reader utilizes two different "Print Dialog" boxes.
    The testing scenario I set up was that you can print in three different ways:
        1. File>Print
        2. <ctrl + P>
        3. <print icon>
    Three ways to view the PDF package:
        1. Download PDF Package & view on your desktop via Adobe Reader
        2. View PDF Package on Firefox w/ Adobe Reader plugin
        3. View PDF Package on Internet Explored  w/ Adobe Reader plugin
    My computer is using:
    XP Pro SP3,  Acrobat Reader 9
    I've also spot tested on:
    XP Pro SP3, Acrobat Reader 8
    Vista, Acrobat Reader 8
    Any Ideas?

    Hi Greg,
    Since this is sytem defined settings that you are trying to implement, I presume that the INI changes ought to be done in FSISYS.INI rather than the FSIUSER.INI.
    Apart from that most of your INI changes look fine as we are also using pdf as our Output type. Please find the INI change swe have implemented in our system for printing pdf.
    Device = ..\Print\Prt.pdf
    Bookmark = Yes,Page
    Compression = 0
    DownLoadFonts = Yes,Enabled
    LanguageLevel = Level2
    Module = PDFW32
    PageNumbers = Yes
    PrintFunc = PDFPrint
    PrintType = PDF
    SendOverlays = No,Enabled
    SendColor = Yes,Enabled
    PrintViewOnly = No
    SplitText = No
    SplitPercent = 50
    TextCommentOn = FORMSET
    Papersize = 0
    FontCompression = 1
    Hope this is helpful.
    Thanks,
    Akhil

  • Some questions on File/Print

    I have a fairly lengthy SQL Output report to print.
    Before I send it to the printer I wanted to make sure it printed out the way I want it to.
    So I did a File/Print.
    My intention is to send the output to Adobe Acrobat to create a pdf file that I can review.
    On the General Tab I set the printer to my Adobe PDF.
    In Print Range I selected All.
    I left the Page Setup tab unchanged. Portrait orientation and 1" margins.
    On the Appearance Tab I clicked Monochrome for Color Appearance.
    I put a name in for Job Name.
    And I put my name in for User Name.
    Here are my questions:
    1. I only got 1 page of output. The first page.
    2. There is a vertical line down the middle of the page. I believe this represents the vertical line that is
    in the SQL Output window in SQL Developer. Can I eliminate that line in my printout?
    And also, how can I change the position of those lines in the Editor and the SQL Output panes?
    3. I don't see my Job Name or User Name anywhere on the page. Although maybe that information isn't supposed to print here anyway.
    4. I think this output is controlled by the 'Printing HTML' settings (but I could be wrong). In Printing HTML I have
    Print File Header and Print Date & Time checked on. But I don't see that information on my printout either.
    5. Does anyone have a font they like to use for this printing? The default (DialogInput) is a little hard for me to read.
    Well, thanks for any help!

    Hi,
    This is a bug in the product
    6784166: PRINT DATA TAB OF TABLE : ENTIRE DATA NOT PRINTED.
    A possible workaround may be to export your data to a HTML file and then use your browser to print.
    Dermot

  • How to save print setup for pdf file so that every user can open and print w/o manually performing?

    Can is there a way to configure the print settings (i.e. paper size, orientation, etc.) and save this setting as part of the pdf file? I would like the users of pdf files to be able to open the file and simply print, without having to manually configure the print settings.

    Not sure if this will help. I got this information from the built-in help under Acrobat 9.
    Advanced
    Lists PDF settings, print dialog presets, and reading options for the document.In the PDF settings for Acrobat, you can set a base Uniform Resource Locator (URL) for web links in the document. Specifying a base URL makes it easy for you to manage web links to other websites. If the URL to the other site changes, you can simply edit the base URL and not have to edit each individual web link that refers to that site. The base URL is not used if a link contains a complete URL address.
    You can also associate a catalog index file (PDX) with the PDF. When the PDF is searched with the Search PDF window, all of the PDFs that are indexed by the specified PDX file are also searched.
    You can include prepress information, such as trapping, for the document. You can define print presets for a document, which prepopulate the Print dialog box with document-specific values. You can also set reading options that determine how the PDF is read by a screen reader or other assistive device.
    Create print presets
    A PDF can contain a set of print presets, a group of document-specific values that is used to set basic print options. By creating a print preset for a document, you can avoid manually setting certain options in the Print dialog box each time you print the document. It’s best to define print settings for a PDF at the time that you create it, but print presets provide a means to add basic print settings to a PDF at any time.
    Choose File > Properties, and click the Advanced tab.
    In the Print Dialog Presets section, set options and click OK.
    The next time you open the Print dialog box, the values will be set to the print preset values. These settings are also used when you print individual documents in a PDF Portfolio.
    Note: To retain a print preset for a PDF, you must save the PDF after creating the print preset.
    Print Dialog Presets
    Page Scaling
    Prepopulates the Page Scaling option in the Print dialog box with the option you choose:
    Default
    Uses the application default setting, which is Shrink To Printable Area.
    None
    Prevents automatic scaling to fit the printable area. This setting is useful for preserving the scale of page content in engineering documents, or for ensuring that documents print at a particular point size to be legal.
    DuplexMode
    For best results, the selected printer should support duplex printing if you select a duplex option.
    Simplex
    Prints on one side of the paper.
    Duplex Flip Long Edge
    Prints on both sides of the paper; the paper flips along the long edge.
    Duplex Flip Short Edge
    Prints on both sides of the paper; the paper flips along the short edge.
    Paper Source By Page Size
    Selects the option by the same name in the Print dialog box. Uses the PDF page size to determine the output tray rather than the page setup option. This option is useful for printing PDFs that contain multiple page sizes on printers that have different-sized output trays.
    Print Page Range
    Prepopulates the Pages box in the Print Range section of the Print dialog box with the page ranges you enter here. This setting is useful in a workflow where documents include both instruction pages and legal pages. For example, if pages 1–2 represent instructions for filling out a form, and pages 3–5 represent the form, you can set up your print job to print multiple copies of only the form.
    Number Of Copies
    Prepopulates the Copies box in the Print dialog box. Choose a number from 2 to 5, or choose Default to use the application default, which is one copy. This limitation prevents multiple unwanted copies from being printed.
    Thanks.

Maybe you are looking for