home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PFindParaAttr.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 PFindParaAttr.html
- *-------------------------------------------------------------------------
- */
-
- #include "PFindParaAttr.h"
- #include "PRequestBuf.h"
-
- #include "PCommand.h"
-
- PFindParaAttr::PFindParaAttr(const char * sParaStyle, short cAlignment, short cLeadingType)
- {
- PRequestBuf request(strlen(sParaStyle) + 6);
-
- request << sParaStyle << cAlignment << cLeadingType;
-
- PCommand command(pm_findparaattr, request);
- }
-
- // end of PFindParaAttr.cpp
-