TRODLParamFlag
Overview
This enum defines the different directions) that can be applied to a parameter.
Location
- Unit: uRODL.pas
Value | Description |
---|---|
fIn | This parameter is uni-directional and will only be passed into the method. |
fInOut | This parameter is bi-directional and will only be passed both into the method and back out with a (possibly) different value. |
fOut | This parameter is uni-directional and will only be passed back out of the method. |
fResult | This parameter is uni-directional and will only be passed back out of the method. In contrast to an fOut parameter, this parameter will be represented as the function result, on the code level. |