Purpose

AutoExpand enables or disables the automatic expansion of an associated cycle.

Syntax

ObjectReference.AutoExpand  = Value

Operation

ObjectReference is the tag name of the cycle.
Value is the setting for the AutoExpand property. (TRUE or non-zero = enables
the automatic expansion of the associated cycle, FALSE or 0 = disables the automatic expansion of the associated cycle.

Remarks

Using this property changes the default for all modes, and the change is permanent for the lifetime of the function unless altered by this logic command again. The change does not take effect until the cycle is entered or re-entered. You should use the property before the Paging Screen is entered.

The setting overrides the Enable Auto Expansion flags on the Paging tab on the Paging Screen property sheet.

Example

To enable automatic expansion for one user and disable it for other users in ‘PagingCycle1’:

IF @OPR = ‘JohnSmith’ THEN

   PagingCycle1.AutoExpand = TRUE

ELSE

   PagingCycle1.AutoExpand = FALSE

ENDIF

Comment on this topic

Topic ID: 500584