typedef
struct
_t_PDEGroup
*
PDEGroup
;
Creates a PDEGroup object.
Call PDERelease() to dispose of the returned PDEGroup object when finished with it.
PDEGroup
PDEGroupCreate(
void
);
Note: This method does not change the reference count of the returned PDEContent.
PDEContent
PDEGroupGetContent(
IN
PDEGroup
pdeGroup
);
pdeGroup | IN/OUT The group whose content is obtained.
|
pdeGroup
. Note: This method increments the reference count of pdeContent
.
void
PDEGroupSetContent(
IN
PDEGroup
pdeGroup
,
IN
PDEContent
pdeContent
);
pdeGroup | IN/OUT A container object.
|
pdeContent | IN/OUT The content to set for
pdeGroup . |