GenApi_IntegerDescriptor
Description
This function stores attributes of a GenApi Integer parameter node.
struct GenApi_IntegerDescriptor
{
atl::sint64 Min;
atl::sint64 Max;
atl::sint64 Inc;
atl::String Unit;
};
- Min - minimal value of parameter range.
- Max - maximum value of parameter range.
- Inc - parameter increment (step) value. Parameter can be set only to values, that fulfill the following formula:
Value = n * Inc + Min - Unit - textual name of parameter unit (for example "us" for microseconds). This parameter can be an empty string when parameter description does not define any unit.
