OLEParameter.Position
From Xojo Documentation
Property (As Integer )
This property is only available on the Windows platform. For cross-platform compatibility, use #If...#Endif with the Target... specifiers to make sure you will not attempt to use this property on an incompatible platform. |
aOLEParameter.Position = newIntegerValue
or
IntegerValue = aOLEParameter.Position
Supported for all project types and targets.
or
IntegerValue = aOLEParameter.Position
Supported for all project types and targets.
Allows you to specify which position (1-based index) that you want the parameter to be passed in.
Notes
This is akin to named parameters, if you know the position of the parameter within the function that you want to call, you can create an OLEParameter object and set its Position property to achieve the same effect. The default value is 0, which means no positioning.