home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PChangeParaAttr.cpp -------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:15 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PChangeParaAttr.html
- *-------------------------------------------------------------------------
- */
-
- #include "PChangeParaAttr.h"
- #include "PRequestBuf.h"
-
- #include "PCommand.h"
-
- PChangeParaAttr::PChangeParaAttr(const char * sParaStyle, short cAlignment, short cLeadingType)
- {
- PRequestBuf request(strlen(sParaStyle) + 6);
-
- request << sParaStyle << cAlignment << cLeadingType;
-
- PCommand command(pm_changeparaattr, request);
- }
-
- // end of PChangeParaAttr.cpp
-