Previous Topic: Related FunctionsNext Topic: EApiFetchSingleNumericPrp


Example

#include <eapidef.h>
EAPIRC rc = EAPI_SUCCESSFUL_RC;
OBJID nInObjectId;
PRPTYPECODE nPrpTypeCode;
CHARVALUE cCharPrp;
nObjectId = 87144L;
nPrpTypeCode = 85;
rc = EApiFetchSingleCharPrp(nInObjectId,
nPrpTypeCode,
&cCharPrp);
if ( rc != EAPI_SUCCESSFUL_RC )
printf("Error in EApiFetchSingleCharPrp\n");
else
printf("Character Prp = %c\n", (char)cCharPrp);