Pointer to the SAFEARRAY of strings containing available categories
Return Values
S_OK
Success
E_FAIL
Failure.
Example
This VB example initializes a combo box with the list of available feature categories:
CatLst = ActiveGige1.GetCategoryList
For i = 0 ToUBound(CatLst)
Combo1.AddItem (CatLst(i))
Next
Combo1.ListIndex = 0
Remarks
The list of features grouped under a specific category can be retrieved with GetFeatureList.
Note that in C/C++ applications it is required to call SafeArrayDestroy() to delete the SAFEARRAY returned by GetCategoryList.