Previous Topic: Related FunctionsNext Topic: EApiFetchPrpLastUpInfo


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
OBJID nObjectId;
PRPTYPECODE nPrpTypeCode;
nObjectId = 70902L;
nPrpTypeCode = 224;
rc = EApiFetchCharArrayPrp(nInObjectId,
nPrpTypeCode,
szCharText);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiFetchCharArrayPrp\n");
else
printf("CharText = %s\n", szCharText);