DL Logo

PDEGroup Typedefs

PDEGroup

Header: PEExpT.h:257

Description

An in-memory representation of objects in a PDEContent object. It has no state and is not represented in any way in a PDF content stream (that is, PDEContent). When used in a PDEClip, this object is used to associate PDEText objects into a single clipping object.

Syntax

typedef struct _t_PDEGroup *PDEGroup;

Returned From

Used By

PDEGroup Functions

PDEGroupCreate

Header: PEWProcs.h:1495

Description

Creates a PDEGroup object.

Call PDERelease() to dispose of the returned PDEGroup object when finished with it.

Related Methods

Syntax

PDEGroup PDEGroupCreate(void);

Returns

The newly created PDEGroup.

PDEGroupGetContent

Header: PERProcs.h:1645

Description

Gets the PDEContent for a PDEGroup.

Note: This method does not change the reference count of the returned PDEContent.

Related Methods

Syntax

PDEContent PDEGroupGetContent(IN PDEGroup pdeGroup);

Parameters

pdeGroup
IN/OUT The group whose content is obtained.

Returns

The PDEContent in pdeGroup.

Exceptions

PDEGroupSetContent

Header: PEWProcs.h:1510

Description

Sets the PDEContent for a PDEGroup. The existing PDEContent is released by this method.

Note: This method increments the reference count of pdeContent.

Related Methods

Syntax

void PDEGroupSetContent(IN PDEGroup pdeGroup, IN PDEContent pdeContent);

Parameters

pdeGroup
IN/OUT A container object.
pdeContent
IN/OUT The content to set for pdeGroup.

Exceptions