You can partition only the GatheringParams, StitchingParams and FoldingParams elements with either the RunIndex or the BundleItemIndex.
Do not use the BundleItemIndex when you can partition with the RunIndex. Only use the BundleItemIndex when the InsertSheet must be finished independently from the RunList pages.
The RunList/@EndOfBundleItem defines the BundleItem for the logical pages of the document. The logical pages are defined by the RunList.
The InsertSheet/@IncludeInBundleItem defines the BundleItem for the physical sheets. The physical sheets are defined by the InsertSheet elements.
The numbering of the BundleItems starts at 0. The BundleItemIndex is a range list which refers to the BundleItem numbers. It does not refer to logical pages or sheets. Negative values are not allowed for the BundleItemIndex.
A new Bundeltem is defined and the value of the BundleItemIndex is increased by 1 when one or both of the following occurs:
RunList/@EndOfBundleItem="true"
InsertSheet/@IncludeInBundleItem="New"
An InsertSheet with @IncludeInBundleItem="None" is part of the BundleItem of the concerning RunList partition, even if @EndOfBundleItem="true". So, if @EndOfBundleItem="true" is defined in a RunList partition, a trailing InsertSheet will not be separated in a new BundleItem if @IncludeInBundleItem="None". The new BundleItem will be created after the InsertSheet element.
The GatheringParams, StitchingParams or FoldingParams elements share the same numbering of the partitions. If one of these resources is partitioned using BundleItemIndex, then ALL three resources MUST be partitioned using BundleItemIndex.
Syntax
XPath: /JDF/ResourcePool/<Element>[@PartIDKeys="BundleItemIndex"]/<Element>/@BundleItemIndex
Supported values
<Element>: GatheringParams, StitchingParams or FoldingParams
@BundleItemIndex
@BundleItemIndex |
Description |
---|---|
Integer range list |
Select a set of zero-based numbered BundleItem. A range list is an array of mixed ranges and individual integers separated by whitespace. A range consists of two integers connected with a tilde (~). |
Syntax
XPath: /JDF/ResourcePool/RunList[@PartIDKeys="Run"]/RunList/@EndOfBundleItem
Type
Boolean
Supported values
@EndOfBundleItem |
Description |
---|---|
False |
Pages from this RunList partition will be part of the same BundleItem of the next RunList partition. Default value for all but last RunList partitions. InsertSheet with @IncludeInBundleItem="New" or "Before" MUST NOT be specified after this RunList partition. |
True |
The last page in the RunList partition is the last page of a BundleItem. Default value for the last RunList partition. An InsertSheet with @IncludeInBundleItem="New" can be specified after this RunList partition. |
Syntax
XPath: /JDF/ResourcePool/LayoutPreparationParams/InsertSheet/@IncludeInBundleItem
Type
Enumeration
Supported values
@IncludeInBundleItem |
Description |
---|---|
None (default) |
This InsertSheet is not included in a new BundleItem. It is part of the same BundleItem of the RunList partition to which it is associated, even if @EndOfBundleItem="true". |
New |
A new BundleItem is created. Unless it is an InsertSheet before the first page, a RunList partition with @EndOfBundleItem="true" must be specified before it. |
Before |
This InsertSheet is included in the BundleItem that occurs before this InsertSheet. An InsertSheet with attribute @IncludeInBundleItem="New" must be specified before it. |