DJIParamCapabilityMinMax

@interface DJIParamCapabilityMinMax : DJIParamCapability

DJIParamCapabilityMinMax adds the maximum and minimum possible values of the parameter to the base class property of whether the parameter is supported by the component or product.

  • min

    The valid minimum value of the parameter for the product. If isSupported returns NO, the value for min is undefined.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSNumber *min;
  • max

    The valid maximum value of the parameter for the product. If isSupported returns NO, the value for max is undefined.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSNumber *max;