GenApi_IntegerDescriptor
Description
This function stores attributes of a GenApi Integer parameter node.
struct GenApi_IntegerDescriptor { ftl::sint64 Min; ftl::sint64 Max; ftl::sint64 Inc; ftl::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.