GetFeatureEnumList
|
![]() ![]() ![]() |
[in] const char* feature
|
Name of the feature. Must be an existing feature of the enumerated type.
|
|
[in] int* pSize
|
Pointer to a variable that receives the number of entries in the enumerated list.
|
|
Array of strings containing the list of enumerated entries.
|
|
static CGevCamera* m_pCamera;
|
m_pCamera = createCamera();
|
m_pCamera->CreateFeature(FEATURE_TYPE_ENUMERATION, "TestImageSelector", "Root", FEATURE_ACCESS_RW);
|
|
m_pCamera->setEnumEntry("TestImageSelector", "First pattern", 1);
|
m_pCamera->setEnumEntry("TestImageSelector", "Second pattern", 2);
|
m_pCamera->setEnumEntry("TestImageSelector", "Third pattern", 3);
|