API

CibPdfBrJobGetProperty

Returns the value of a property for a given CIB pdf brewer job. ANSI version is CibPdfBrJobGetPropertyA, Unicode wide version CibPdfBrJobGetPropertyW.

Syntax

C
int CibPdfBrJobGetPropertyA(
  CibPdfBrJobHandle a_hJob,
const char *a_pName,
char *a_pValue,
size_t *a_Length
);

Parameters

CibPdfBrJobHandle a_hJob: >Handle of the job.

const char* a_pName: Name of the property.

char* a_pValue: Storage pointer for the property value, buffer.

size_t* a_Length: Length of the written value.>

Return value

If 0 is returned, the function succeeded, function failed otherwise. Check error code list.

Note
If the given buffer size cannot hold the property value, error CIBPRT_ERROR_BUFFERTOOSMALL (47) will be returned.