SetFeatureDescription
|
|
[in] const char* feature
|
Name of the feature to assign the description to.
|
|
[in] const char* description
|
Siring containing the description of the feature.
|
|
S_OK
|
Success
|
E_FAIL
|
Failure
|
E_NOINTERFACE
|
Feature does not exist
|
|
|
static CGevCamera* m_pCamera;
|
m_pCamera = createCamera();
|
|
m_pCamera->CreateFeature(FEATURE_TYPE_INTEGER, "Contrast", "Analog", FEATURE_ACCESS_RW);
|
m_pCamera->SetFeatureDescription("Offset", "Contrast of the image in percent");
|
|