The YCol property returns or sets the posted data variable's Y coordinate column. Returns an integer.
Syntax
object.YCol( VariableIndex )
object.YCol( VariableIndex ) = YCol
Parameter |
Type |
Description |
VariableIndex |
Integer |
required; variable number |
YCol |
Integer |
required; Y coordinate column, column A equals 1 |
Example 1
This example returns the Y coordinate column used for the fourth variable.
Debug.Print PostData.YCol(4)
Example 2
This example sets the Y coordinate column for the third posted to column G.
PostData.YCol(3) = 7
Used by: PostData object