The PostPosXOffset property returns or sets a variable's User defined centroid offset X position when posting data. Returns a double.
Syntax
object.PostPosXOffset( VariableIndex )
object.PostPosXOffset( VariableIndex ) = Offset
Parameter |
Type |
Description |
VariableIndex |
Integer |
required; variable number |
Offset |
Double |
required; in page units |
Remarks
The PostPosOffsetType property (post map position offset) must be set to MVPosOffsetUser prior to setting the PostPosXOffset property.
Example 1
This example returns the X offset for the third variable.
Debug.Print PostData.PostPosXOffset(3)
Example 2
This example changes the X offset to 0.75 for the second variable.
PostData.PostPosXOffset(2) = 0.75
Used by: PostData object