<< Click to Display Table of Contents >> VpeFindTplVpeObject |
In dycodoc a unique name is assigned to each VPE Object. This function searches for a given VPE Object name in the template and returns the handle of the VPE Object.
VpeHandle EXPO VpeFindTplVpeObject(
VpeHandle hTemplate,
LPCSTR object_name
)
VpeHandle hTemplate
Template Handle
LPCSTR object_name
name of the VPE Object as defined in dycodoc
Returns:
Handle of the VPE Object, if the object was found
NULL otherwise
Remarks:
The function can be used to access VPE Objects within the template directly.
Example:
VpeHandle hVPEObject;
hVPEObject = VpeFindTplVpeObject(hTpl, "Text1");
if (hVPEObject)
{
VpeSetBkgMode(hVPEObject, VBKG_SOLID);
VpeSetBkgColor(hVPEObject, COLOR_RED);
}
The above example searches for the VPE Object named "Text1" in the template and changes its background mode to solid and its color to red.
"dycodoc Template Processing" in the Programmer's Manual