Enum SLApplyRealConst.TSLRealApplyOperation
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabPkg
Unit: SLApplyRealConst
Contents | 
Syntax
Delphi:
type TSLRealApplyOperation = (faoAdd, faoSubtract, faoSubtractConst, faoMultiply, faoDivide, faoDivideConst, faoSet);
C++ Builder:
enum TSLRealApplyOperation {faoAdd, faoSubtract, faoSubtractConst, faoMultiply, faoDivide, faoDivideConst, faoSet};
Visual C++ (MFC):
enum CTSLRealApplyOperation {faoAdd, faoSubtract, faoSubtractConst, faoMultiply, faoDivide, faoDivideConst, faoSet};
Summary
Defines the type of operation to be performed between a Real(double) buffer and a Real(double) constant.
Description
Type of operation to be performed between a Real(double) buffer and a Real(double) constant.
Values
| faoAdd | Add operation. | 
| faoSubtract | Subtract operation. | 
| faoSubtractConst | Subtract sample from constant operation. | 
| faoMultiply | Multiply operation. | 
| faoDivide | Divide operation. | 
| faoDivideConst | Divide constant by sample operation. | 
| faoSet |