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 / pmovecolumn.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  829 b   |  32 lines

  1. /*
  2.  *--- PMoveColumn.cpp -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PMoveColumn.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PMoveColumn.h"
  12. #include "PRequestBuf.h"
  13. #include "PCommand.h"
  14.  
  15. const size_t REQUEST_SIZE = 10;
  16.  
  17. PMoveColumn::PMoveColumn
  18.   (    short    nColumnNum,
  19.     short    cSide,
  20.     long    xLocation,
  21.     eColumn    cPage )
  22. {
  23.     char * temp[REQUEST_SIZE];
  24.     PRequestBuf request(temp);
  25.  
  26.     request << nColumnNum << cSide << xLocation << (short) cPage;
  27.             
  28.     PCommand command(pm_movecolumn, request);
  29. }
  30.  
  31. // end of PMoveColumn.cpp
  32.