The PostPosYOffset property returns or sets a variable's User defined centroid offset Y position when posting data. Returns a double.
Syntax
object.PostPosYOffset( VariableIndex )
object.PostPosYOffset( 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 PostPosYOffset property.
Example 1
This example returns the Y offset for the third variable.
Debug.Print PostData.PostPosYOffset(3)
Example 2
This example changes the Y offset to 0.75 for the second variable.
PostData.PostPosYOffset(2) = 0.75
Used by: PostData object