Page
QuickLinks
Hierarchy
Properties
Property | Type | Access | Description |
---|---|---|---|
allGraphics | Array of Graphic | readonly | Lists all graphics contained by the Page. |
allPageItems | Array of PageItem | readonly | Lists all page items contained by the Page. |
appliedMaster | MasterSpreadNothingEnum | r/w | The master spread applied to the Page. Can also accept: NothingEnum enumerator. |
appliedSection | Section | readonly | The section to which the page belongs. |
appliedTrapPreset | String TrapPreset |
r/w | The trap preset applied to the page. Can also accept: String. |
bounds | Array of Measurement Unit (Number or String) | readonly | The bounds of the Page, in the format [y1, x1, y2, x2]. |
buttons | Buttons Button | readonly | A collection of buttons. |
documentOffset | number | readonly | The sequential number of the page within the document. |
epstexts | EPSTexts EPSText | readonly | EPSTexts |
eventListeners | EventListeners EventListener | readonly | A collection of event listeners. |
events | Events Event | readonly | A collection of events. |
formFields | FormFields FormField | readonly | A collection of form fields. |
graphicLines | GraphicLines GraphicLine | readonly | A collection of graphic lines. |
gridData | GridDataInformation | readonly | Default grid properties. Note: Applies to named, layout, and frame (story) grids. |
groups | Groups Group | readonly | A collection of groups. |
guides | Guides Guide | readonly | A collection of guides. |
id | number | readonly | The unique ID of the Page. |
index | number | readonly | The index of the Page within its containing object. |
isValid | bool | readonly | Returns true if the object specifier resolves to valid objects. |
label | string | r/w | A property that can be set to any string. |
marginPreferences | MarginPreference | readonly | Margin preference settings. |
masterPageItems | Array of Graphics Guides Movies PageItems Sounds |
readonly | The items on a specified document page that originated on the applied master page and have not been overridden or detached. Can return: Array of PageItems, Guides, Graphics, Movies or Sounds. |
masterPageTransform | TransformationMatrix | r/w | The transform applied to the master page before it is applied to Page. |
multiStateObjects | MultiStateObjects MultiStateObject | readonly | A collection of multi-state objects. |
name | string | readonly | The name of the Page. |
ovals | Ovals Oval | readonly | A collection of ellipses. |
pageColor | 3 Reals (0 - 255) PageColorOptions UIColors |
r/w | The color label of the Page, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B values, or as a UI color. Can return: Array of 3 Reals (0 - 255) or UIColors enumerator or PageColorOptions enumerator. |
pageItems | PageItems PageItem | readonly | The page items collection, which can be used to process all page items in a container (such as a document, page, or group), regardless of type. |
parent | MasterSpread Spread |
readonly | The parent of the Page (a Spread or MasterSpread). |
polygons | Polygons Polygon | readonly | A collection of polygons. |
preferences | Preferences Preference | readonly | A collection of preferences objects. |
properties | Object | r/w | A property that allows setting of several properties at the same time. |
rectangles | Rectangles Rectangle | readonly | A collection of rectangles. |
side | PageSideOptions: PageSideOptions.RIGHT_HAND PageSideOptions.LEFT_HAND PageSideOptions.SINGLE_SIDED |
readonly | The side of the binding spine on which to place the page within the spread. |
splineItems | SplineItems SplineItem | readonly | The spline items collection. |
tabOrder | Array of Button | r/w | The order in which the focus moves to different buttons in the PDF when the tab key is pressed. |
textFrames | TextFrames TextFrame | readonly | A collection of text frames. |
Methods
Instances
EventListener addEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Adds an event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The event type. |
handler | File JavaScript Function | The event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
void detach ()
Detaches an overridden master page item from the master page.
Page duplicate ([to:
LocationOptions=LocationOptions.AT_END][, reference:
varies])
Duplicates the page.
Parameter | Type | Description |
---|---|---|
to | LocationOptions: LocationOptions.BEFORE LocationOptions.AFTER LocationOptions.AT_END LocationOptions.AT_BEGINNING LocationOptions.UNKNOWN | The location at which to place the duplicate page relative to the reference object or within the document or spread. (Optional) (default: LocationOptions.AT_END) |
reference | Page Spread | The reference object. Note: Required when the to value specifies before or after. Can accept: Page or Spread. (Optional) |
string extractLabel (key:
string)
Gets the label value associated with the specified key.
Parameter | Type | Description |
---|---|---|
key | string | The key. |
Array of Page getElements ()
Resolves the object specifier, creating an array of object references.
void insertLabel (key:
string, value:
string)
Sets the label to the value associated with the specified key.
Parameter | Type | Description |
---|---|---|
key | string | The key. |
value | string | The value. |
Page move ([to:
LocationOptions=LocationOptions.AT_END][, reference:
varies][, binding:
BindingOptions=BindingOptions.DEFAULT_VALUE])
Moves the page.
Parameter | Type | Description |
---|---|---|
to | LocationOptions: LocationOptions.BEFORE LocationOptions.AFTER LocationOptions.AT_END LocationOptions.AT_BEGINNING LocationOptions.UNKNOWN | The new location of the page relative to the reference object or within the document or spread. (Optional) (default: LocationOptions.AT_END) |
reference | Page Spread | The reference object. Note: Required when the to parameter value specifies before or after. Can accept: Page or Spread. (Optional) |
binding | BindingOptions: BindingOptions.RIGHT_ALIGN BindingOptions.LEFT_ALIGN BindingOptions.DEFAULT_VALUE | The location of the binding spine in spreads. (Optional) (default: BindingOptions.DEFAULT_VALUE) |
Array of any place (fileName:
File[, placePoint:
Array of Measurement Unit (Number or String)][, destinationLayer:
Layer][, autoflowing:
bool=false][, withProperties:
Object])
Places the file.
Parameter | Type | Description |
---|---|---|
fileName | File | The file to place |
placePoint | Array of Measurement Unit (Number or String) | The point at which to place (Optional) |
destinationLayer | Layer | The layer on which to place (Optional) |
autoflowing | bool | Whether to autoflow placed text (Optional) (default: false) |
withProperties | Object | Initial values for properties of the placed object(s) (Optional) |
Story placeAndLink (parentStory:
Story[, placePoint:
Array of Measurement Unit (Number or String)][, destinationLayer:
Layer][, showingOptions:
bool=false])
Deprecated: Use contentPlace method. Original Description: Create a linked story and place it into the target.
Parameter | Type | Description |
---|---|---|
parentStory | Story | The story to place and link from. |
placePoint | Array of Measurement Unit (Number or String) | The point at which to place (Optional) |
destinationLayer | Layer | The layer on which to place (Optional) |
showingOptions | bool | Whether to display the link options dialog (Optional) (default: false) |
PageItem placeXML (using:
XMLElement, placePoint:
Array of Measurement Unit (Number or String)[, autoflowing:
bool=false])
Places the XML element onto a page. If the place point is above an existing page item, place the XML element into the page item.
Parameter | Type | Description |
---|---|---|
using | XMLElement | The XML element to place. |
placePoint | Array of Measurement Unit (Number or String) | The point at which to place the object, specified in the format [x, y]. |
autoflowing | bool | If true, autoflows placed text. (Optional) (default: false) |
void reframe (in:
varies, opposingCorners:
Array of varies)
Move the bounding box of the page item
Parameter | Type | Description |
---|---|---|
in | boundsKind:BoundingBoxLimits CoordinateSpaces Ordered array containing coordinateSpace:CoordinateSpaces | The bounding box to resize. Can accept: CoordinateSpaces enumerator or Ordered array containing coordinateSpace:CoordinateSpaces enumerator, boundsKind:BoundingBoxLimits enumerator. |
opposingCorners | Array of any | Opposing corners of new bounding box in the given coordinate space |
void remove ()
Deletes the Page.
bool removeEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Removes the event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The registered event type. |
handler | File JavaScript Function | The registered event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
void removeOverride ()
Removes the override from a previously overridden master page item.
void resize (in:
varies, from:
varies, by:
ResizeMethods, values:
Array of varies[, resizeIndividually:
bool=true][, consideringRulerUnits:
bool=false])
Resize the page item.
Parameter | Type | Description |
---|---|---|
in | BoundingBoxLimits boundsKind:BoundingBoxLimits CoordinateSpaces Ordered array containing coordinateSpace:CoordinateSpaces | The bounding box to resize. Can accept: CoordinateSpaces enumerator, BoundingBoxLimits enumerator or Ordered array containing coordinateSpace:CoordinateSpaces enumerator, boundsKind:BoundingBoxLimits enumerator. |
from | AnchorPoint AnchorPoint Array of 2 Reals Array of Arrays of 2 Reals BoundingBoxLimits CoordinateSpaces Long Integers | The transform origin. Legal specifications: relative to bounding box: anchor | {anchor | {x,y}, bounds kind [, coordinate space]}; relative to coordinate space: {x,y} | {{x,y}[, coordinate space]}; relative to layout window ruler: {{x,y}, page index | bounds kind}. Can accept: Array of 2 Reals, AnchorPoint enumerator or Array of Arrays of 2 Reals, CoordinateSpaces enumerators, AnchorPoint enumerators, BoundingBoxLimits enumerators or Long Integers. |
by | ResizeMethods: ResizeMethods.ADDING_CURRENT_DIMENSIONS_TO ResizeMethods.MULTIPLYING_CURRENT_DIMENSIONS_BY ResizeMethods.REPLACING_CURRENT_DIMENSIONS_WITH ResizeMethods.RESHAPING_AREA_TO_RATIO ResizeMethods.RESHAPING_BORDER_TO_RATIO | How the current dimensions are affected by the given values |
values | Array of : Array of Reals CoordinateSpaces ResizeConstraints | The width and height values. Legal dimensions specifications: {x, y [, coordinate space]}, {x, resize constraint [, coordinate space]}, or {resize constraint, y [, coordinate space]}; where x and y are real numbers and coordinate space is used to determine _only_ the unit of length for x and y; coordinate space is ignored for the 'current dimensions times' resize method). Can accept: Array of Reals, ResizeConstraints enumerators or CoordinateSpaces enumerators. |
resizeIndividually | bool | If false and multiple page items are targeted, the new dimensions are attained only by moving the individual items rather than resizing them. (Optional) (default: true) |
consideringRulerUnits | bool | If true then a ruler location is interpreted using ruler units rather than points. The default value is false. This parameter has no effect unless the reference point is specified relative to a page. (Optional) (default: false) |
any resolve (location:
varies, in:
CoordinateSpaces[, consideringRulerUnits:
bool=false])
Get the coordinates of the given location in the specified coordinate system.
Parameter | Type | Description |
---|---|---|
location | AnchorPoint AnchorPoint Array of 2 Reals Array of Arrays of 2 Reals BoundingBoxLimits CoordinateSpaces Long Integers | The location requested. Can accept: Array of 2 Reals, AnchorPoint enumerator or Array of Arrays of 2 Reals, CoordinateSpaces enumerators, AnchorPoint enumerators, BoundingBoxLimits enumerators or Long Integers. |
in | CoordinateSpaces: CoordinateSpaces.PASTEBOARD_COORDINATES CoordinateSpaces.PARENT_COORDINATES CoordinateSpaces.INNER_COORDINATES CoordinateSpaces.SPREAD_COORDINATES | The coordinate space to use. |
consideringRulerUnits | bool | If true then a ruler location is interpreted using ruler units rather than points. The default value is false. This parameter has no effect unless the reference point is specified relative to a page. (Optional) (default: false) |
PageItem setContent (using:
string[, relativeBasePath:
string])
Replaces the content of XML element with content imported from a file.
Parameter | Type | Description |
---|---|---|
using | string | The file path to the import file. |
relativeBasePath | string | Base path used to resolve relative paths. (Optional) |
string toSource ()
Generates a string which, if executed, will return the Page.
string toSpecifier ()
Retrieves the object specifier.
void transform (in:
CoordinateSpaces, from:
varies, withMatrix:
varies[, replacingCurrent:
varies][, consideringRulerUnits:
bool=false])
Transform the page item.
Parameter | Type | Description |
---|---|---|
in | CoordinateSpaces: CoordinateSpaces.PASTEBOARD_COORDINATES CoordinateSpaces.PARENT_COORDINATES CoordinateSpaces.INNER_COORDINATES CoordinateSpaces.SPREAD_COORDINATES | The coordinate space to use |
from | AnchorPoint AnchorPoint Array of 2 Reals Array of Arrays of 2 Reals BoundingBoxLimits CoordinateSpaces Long Integers | The temporary origin during the transformation. Can accept: Array of 2 Reals, AnchorPoint enumerator or Array of Arrays of 2 Reals, CoordinateSpaces enumerators, AnchorPoint enumerators, BoundingBoxLimits enumerators or Long Integers. |
withMatrix | Array of 6 Reals TransformationMatrix | Transform matrix. Can accept: Array of 6 Reals or TransformationMatrix. |
replacingCurrent | Array of MatrixContent Long Integer MatrixContent | Transform components to consider; providing this optional parameter causes the target's existing transform components to be replaced with new values. Without this parameter, the given matrix is concatenated onto the target's existing transform combining the effect of the two. Can accept: MatrixContent enumerator, Array of MatrixContent enumerators or Long Integer. (Optional) |
consideringRulerUnits | bool | If true then a ruler based origin is interpreted using ruler units rather than points. The default value is false. This parameter has no effect unless the reference point is specified relative to a page. (Optional) (default: false) |
Array of TransformationMatrix transformValuesOf (in:
CoordinateSpaces)
Get the transformation values of the page item.
Parameter | Type | Description |
---|---|---|
in | CoordinateSpaces: CoordinateSpaces.PASTEBOARD_COORDINATES CoordinateSpaces.PARENT_COORDINATES CoordinateSpaces.INNER_COORDINATES CoordinateSpaces.SPREAD_COORDINATES | The coordinate space to use |
Element of
Bookmark.destination
Button.parentPage
EPS.parentPage
EPSText.parentPage
FormField.parentPage
Graphic.parentPage
GraphicLine.parentPage
Group.parentPage
Guide.parentPage
HyperlinkPageDestination.destinationPage
Image.parentPage
ImportedPage.parentPage
MarginPreference.parent
MediaItem.parentPage
Movie.parentPage
MultiStateObject.parentPage
Oval.parentPage
PDF.parentPage
PICT.parentPage
PageItem.parentPage
Polygon.parentPage
Rectangle.parentPage
Section.pageStart
Sound.parentPage
SplineItem.parentPage
TextFrame.parentPage
WMF.parentPage
Used in:
varies=any Button.override (destinationPage: Page)
varies=any EPS.override (destinationPage: Page)
varies=any EPSText.override (destinationPage: Page)
varies=any FormField.override (destinationPage: Page)
varies=any Graphic.override (destinationPage: Page)
varies=any GraphicLine.override (destinationPage: Page)
varies=any Group.override (destinationPage: Page)
varies=any Guide.override (destinationPage: Page)
HyperlinkExternalPageDestination HyperlinkExternalPageDestinations.add ([destination: Page][, withProperties: Object])
HyperlinkPageDestination HyperlinkPageDestinations.add ([destination: Page][, withProperties: Object])
varies=any Image.override (destinationPage: Page)
varies=any ImportedPage.override (destinationPage: Page)
varies=any MediaItem.override (destinationPage: Page)
varies=any Movie.override (destinationPage: Page)
varies=any MultiStateObject.override (destinationPage: Page)
varies=any Oval.override (destinationPage: Page)
varies=any PDF.override (destinationPage: Page)
varies=any PICT.override (destinationPage: Page)
varies=any PageItem.override (destinationPage: Page)
Page Pages.nextItem (obj: Page)
Page Pages.previousItem (obj: Page)
varies=any Polygon.override (destinationPage: Page)
varies=any Rectangle.override (destinationPage: Page)
Section Sections.add ([reference: Page][, withProperties: Object])
varies=any Sound.override (destinationPage: Page)
varies=any SplineItem.override (destinationPage: Page)
varies=any TextFrame.override (destinationPage: Page)
varies=any WMF.override (destinationPage: Page)
Return
Page Page.duplicate ([to: LocationOptions=LocationOptions.AT_END][, reference: varies])
Array of Page Page.getElements ()
Page Page.move ([to: LocationOptions=LocationOptions.AT_END][, reference: varies][, binding: BindingOptions=BindingOptions.DEFAULT_VALUE])
Page Pages.[] (index: number)
Page Pages.add ([at: LocationOptions=LocationOptions.UNKNOWN][, reference: varies][, withProperties: Object])
Page Pages.anyItem ()
Array of Page Pages.everyItem ()
Page Pages.firstItem ()
Page Pages.item (index: varies)
Page Pages.itemByID (id: number)
Page Pages.itemByName (name: string)
Array of Page Pages.itemByRange (from: varies, to: varies)
Page Pages.lastItem ()
Page Pages.middleItem ()
Page Pages.nextItem (obj: Page)
Page Pages.previousItem (obj: Page)
Jongware, 28-Apr-2012 v3.0.3i | Contents :: Index |