after (deprecated)

Specifies the constraints on moving to a new page or content area after rendering the subform.

As of XFA version 2.8, this property is now deprecated. See breakAfter .

Syntax

Reference_Syntax.after = "auto | contentArea | pageArea | pageEven | pageFront | pageOdd"

Values

Type

Values

String

The behaviors described below can be further refined by optionally specifying a destination page or content area via the afterTarget (deprecated) property.

auto (default)

The determination of a transition to a new page or content area will be delegated to the processing application. No transition to a new page or content area will be forced.

contentArea 

Rendering will transition to the next available content area.

pageArea 

Rendering will transition to a new page.

pageBack 

When duplexing, rendering will transition to the next available back surface, potentially causing an intervening page surface to be printed. If duplexing is not in effect, rendering will transition to a new page.

pageEven 

Rendering will transition to the next available even-numbered page, potentially causing intervening numbered or unnumbered pages to be printed. This behavior does not require duplexing.

pageFront 

When duplexing, rendering will transition to the next available front surface, potentially causing an intervening page surface to be printed. If duplexing is not in effect, rendering will transition to a new page.

pageOdd 

Rendering will transition to the next available odd numbered page, potentially causing intervening numbered or unnumbered pages to be printed. This behavior does not require duplexing.

Applies to

Version

XFA 2.1

Examples

JavaScript

Subform1.break.after = "pageOdd";

FormCalc

Subform1.break.after = "pageOdd"

// Ethnio survey code removed