'Declaration
Public Function TwainGetCapRangeNumeric( _ ByVal Cap As TwainCapabilities, _ ByRef nMinValue As Double, _ ByRef nMaxValue As Double, _ ByRef nStepValue As Double _ ) As Boolean
public bool TwainGetCapRangeNumeric( TwainCapabilities Cap, ref double nMinValue, ref double nMaxValue, ref double nStepValue )
public function TwainGetCapRangeNumeric( Cap: TwainCapabilities; var nMinValue: Double; var nMaxValue: Double; var nStepValue: Double ): Boolean;
public function TwainGetCapRangeNumeric( Cap : TwainCapabilities, nMinValue : double, nMaxValue : double, nStepValue : double ) : boolean;
public: bool TwainGetCapRangeNumeric( TwainCapabilities Cap, ref double nMinValue, ref double nMaxValue, ref double nStepValue )
public: bool TwainGetCapRangeNumeric( TwainCapabilities Cap, double% nMinValue, double% nMaxValue, double% nStepValue )
Parameters
- Cap
- A member of the TwainCapabilities enumeration.
- nMinValue
- Output parameter. Starting value in the range.
- nMaxValue
- Output parameter. Final value in the range.
- nStepValue
- Output parameter. Increment from nMinValue to nMaxValue.
Return Value
True if success, else False -> use TwainGetLastResultCode() and TwainGetLastConditionCode()
methods for diagnosing the error.