PostPosOffsetType Property

 

The PostPosOffsetType property returns or sets a variable's Centroid offset type when posting data. Returns a MVPosOffsetType.

 

Syntax

object.PostPosOffsetType( VariableIndex ) = Type

 

Parameter

Type

Description

VariableIndex

Integer

required; variable number

Type

MVPosOffsetType

required; offset type

 

Remarks

If you select the user defined (mvPosOffsetUser) Type, use PostPosXOffset Property and PostPosYOffset Property to set the offset amounts.

 

Example 1

This example returns the type of offset for the fifth variable.

 

Debug.Print PostData.PostPosOffsetType( VariableIndex:=5 )

 

Example 2

This example sets the offset type for the third variable to user defined.

 

PostData.PostPosOffsetType(3) = mvPosOffsetUser

 

Used by: PostData object