home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / ppageoptions.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  740 b   |  27 lines

  1. /*
  2.  *--- PPageOptions.cpp ----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PPageOptions.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PPageOptions.h"
  12. #include "PRequestBuf.h"
  13. #include "PCommand.h"
  14.  
  15.  
  16. void PPageOptions::SetOptions(PMBool bDoubleSided, PMBool bFacingPages)
  17. {
  18.     char temp[8];
  19.     PRequestBuf request(temp);
  20.     
  21.     request << bDoubleSided << bFacingPages;
  22.         
  23.     PCommand command(pm_pageoptions, request);
  24. }
  25.  
  26. // end of PPageOptions.cpp
  27.