GenApi_FloatDescriptor

Description

This structure stores attributes of a GenApi Integer parameter node.

struct GenApi_FloatDescriptor
{
	double Min;
	double Max;
	bool HasInc;
	double Inc;
	atl::String Unit;
};
  • Min - minimal value of parameter range.
  • Max - maximum value of parameter range.
  • HasInc - flag indicating if this parameter has an associated increment (step) value, and if the Inc parameter is valid.
  • Inc - parameter increment (step) value. This parameter is valid only when the HasInc flag is set to true. Increment value for Float parameters is only indicative and does not constraint parameter value.
  • 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.

See also