Retrieves the number of properties in a property list.
Syntax
GsFunStat GsPropListGetCount (Proplist* pProps,
intl* pCount);
Arguments
pProps Pointer to property list structure. Input.
pCount Returned count. Output.
Return Values
GS_ERROR
GS_SUCCESS
Prerequisites
GsPropListCreate()
Example
intl count;
GsFunStat retval;
PropList findProps;
retval = GsPropListCreate(&findProps, GS_FIND_PROP_LIST_TYPE);
retval = GsPropListGetCount(&findProps, &count);