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