Instance Properties
| Name | Description | Access |
|---|---|---|
| allGraphics | Graphic Lists all graphics contained by the MasterSpread. | read-only |
| allPageItems | PageItem Lists all page items contained by the MasterSpread. | read-only |
| appliedMaster | MasterSpread The master spread applied to the MasterSpread. Can also accept: NothingEnum enumerator. | read-write |
| baseName | string The name of the master spread. | read-write |
| buttons | Buttons A collection of buttons. | read-only |
| checkBoxes | CheckBoxes A collection of checkboxes. | read-only |
| comboBoxes | ComboBoxes A collection of comboboxes. | read-only |
| endnoteTextFrames | EndnoteTextFrames A collection of endnote text frames. | read-only |
| epstexts | EPSTexts EPSTexts | read-only |
| eventListeners | EventListeners A collection of event listeners. | read-only |
| events | Events A collection of events. | read-only |
| formFields | FormFields A collection of form fields. | read-only |
| graphicLines | GraphicLines A collection of graphic lines. | read-only |
| groups | Groups A collection of groups. | read-only |
| guides | Guides A collection of guides. | read-only |
| id | number The unique ID of the MasterSpread. | read-only |
| idmlComponentName | string The IDML component name of the MasterSpread. | read-write |
| index | number The index of the MasterSpread within its containing object. | read-only |
| isValid | bool Returns true if the object specifier resolves to valid objects. | read-only |
| label | string A property that can be set to any string. | read-write |
| listBoxes | ListBoxes A collection of listboxes. | read-only |
| multiStateObjects | MultiStateObjects A collection of multi-state objects. | read-only |
| name | string The name of the MasterSpread. | read-only |
| namePrefix | string The prefix of the master spread name. | read-write |
| ovals | Ovals A collection of ellipses. | read-only |
| pageColor | The color label of the MasterSpread, 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. | read-write |
| pageItems | PageItems 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. | read-only |
| pages | Pages A collection of pages. | read-only |
| parent | Document The parent of the MasterSpread (a Document). | read-only |
| polygons | Polygons A collection of polygons. | read-only |
| preferences | Preferences A collection of preferences objects. | read-only |
| primaryTextFrame | PageItem The primary text frame through which text flows on the MasterSpread. Must be a text frame or a type on a path spline. Can also accept: NothingEnum enumerator. | read-write |
| properties | Object A property that allows setting of several properties at the same time. | read-write |
| radioButtons | RadioButtons A collection of radio buttons. | read-only |
| rectangles | Rectangles A collection of rectangles. | read-only |
| showMasterItems | bool If true, displays master page items on document pages in the spread. | read-write |
| signatureFields | SignatureFields A collection of signature fields. | read-only |
| splineItems | SplineItems The spline items collection. | read-only |
| textBoxes | TextBoxes A collection of text boxes. | read-only |
| textFrames | TextFrames A collection of text frames. | read-only |
| timingSettings | TimingSetting The object timing settings. | read-only |
Methods
| addEventListener( | eventType, handler [, captures]) |
→ EventListener |
| contentPlace( | pageItems [, linkPageItems] [, linkStories] [, mapStyles] [, placePoint] [, destinationLayer] [, showingOptions]) |
| createGuides( | [numberOfRows] [, numberOfColumns] [, rowGutter] [, columnGutter], guideColor [, fitMargins] [, removeExisting] [, layer]) |
| detach( | ) |
| duplicate( | [to], reference) |
| extractLabel( | key) |
→ string |
| getElements( | ) |
→ MasterSpread |
| insertLabel( | key, value) |
| place( | fileName [, placePoint] [, destinationLayer] [, showingOptions] [, autoflowing] [, withProperties]) |
| placeAndLink( | parentStory [, placePoint] [, destinationLayer] [, showingOptions]) |
→ Story |
| remove( | ) |
| removeEventListener( | eventType, handler [, captures]) |
→ bool |
| resolve( | location, in [, consideringRulerUnits]) |
| select( | [existingSelection]) |
| toSource( | ) |
→ string |
| toSpecifier( | ) |
→ string |
| transform( | in, from, withMatrix, replacingCurrent [, consideringRulerUnits]) |
-
addEventListener( eventType, handler [, captures=false])→ EventListener -
Adds an event listener.
eventTypestring The event type. handlerThe event handler. Can accept: File or JavaScript Function. capturesbool This parameter is obsolete. (Optional) -
contentPlace( pageItems [, linkPageItems=false] [, linkStories=false] [, mapStyles=false] [, placePoint] [, destinationLayer] [, showingOptions=false]) -
Duplicate an object and place it into the target.
pageItemsArray<PageItem> One or more page items to place or load linkPageItemsbool Whether to link pageItems in content placer (if true it will override link stories value) (Optional) linkStoriesbool Whether to link stories in content placer (only applicable for single story, pageItem links will also be created in case of more than one item) (Optional) mapStylesbool Whether to map styles in content placer (Optional) placePointArray<Measurement Unit (Number or String)=any> The point at which to place (Optional) destinationLayerLayer The layer on which to place (Optional) showingOptionsbool Whether to display the link options dialog (Optional) -
createGuides( [numberOfRows=0] [, numberOfColumns=0] [, rowGutter=0] [, columnGutter=0], guideColor [, fitMargins=false] [, removeExisting=false] [, layer]) -
Creates multiple guides on all pages of the spread.
numberOfRowsnumber The number of rows to create on each page. (Optional) numberOfColumnsnumber The number of columns to create on each page. (Optional) rowGutterMeasurement Unit (Number or String)=any The height of the gutter between rows. (Optional) columnGutterMeasurement Unit (Number or String)=any The width of the gutter between columns. (Optional) guideColorThe color to make the guides, 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 accept: Array of 3 Reals (0 - 255) or UIColors enumerator. (Optional) fitMarginsbool If true, the row height and column width are calculated based on the space within the page margins. If false, row height and column width are calculated based on the full page. (Optional) removeExistingbool If true, removes existing guides when creating new ones. (Optional) layerLayer The layer on which to create the guides. (Optional) -
detach( ) -
Detaches an overridden master page item from the master page.
-
duplicate( [to=LocationOptions.AT_END], reference) -
Duplicates the spread.
toLocationOptions The location of the spread relative to the reference object or within the document. (Optional) referenceThe reference object. Note: Required only when the to parameter specifies before or after. Can accept: MasterSpread, Document or MasterSpread. (Optional) -
extractLabel( key)→ string -
Gets the label value associated with the specified key.
keystring The key. -
getElements( )→ MasterSpread -
Resolves the object specifier, creating an array of object references.
-
insertLabel( key, value) -
Sets the label to the value associated with the specified key.
keystring The key. valuestring The value. -
place( fileName [, placePoint] [, destinationLayer] [, showingOptions=false] [, autoflowing=false] [, withProperties]) -
Places the file.
fileNameFile The file to place placePointArray<Measurement Unit (Number or String)=any> The point at which to place (Optional) destinationLayerLayer The layer on which to place (Optional) showingOptionsbool Whether to display the import options dialog (Optional) autoflowingbool Whether to autoflow placed text (Optional) withPropertiesObject Initial values for properties of the placed object(s) (Optional) -
placeAndLink( parentStory [, placePoint] [, destinationLayer] [, showingOptions=false])→ Story -
Deprecated: Use contentPlace method. Original Description: Create a linked story and place it into the target.
parentStoryStory The story to place and link from. placePointArray<Measurement Unit (Number or String)=any> The point at which to place (Optional) destinationLayerLayer The layer on which to place (Optional) showingOptionsbool Whether to display the link options dialog (Optional) -
remove( ) -
Deletes the MasterSpread.
-
removeEventListener( eventType, handler [, captures=false])→ bool -
Removes the event listener.
eventTypestring The registered event type. handlerThe registered event handler. Can accept: File or JavaScript Function. capturesbool This parameter is obsolete. (Optional) -
removeOverride( ) -
Removes the override from a previously overridden master page item.
-
resolve( location, in [, consideringRulerUnits=false]) -
Get the coordinates of the given location in the specified coordinate system.
locationThe 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. inCoordinateSpaces The coordinate space to use. consideringRulerUnitsbool 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) -
select( [existingSelection=SelectionOptions.REPLACE_WITH]) -
Selects the object.
existingSelectionSelectionOptions The selection status of the MasterSpread in relation to previously selected objects. (Optional) -
toSource( )→ string -
Generates a string which, if executed, will return the MasterSpread.
-
toSpecifier( )→ string -
Retrieves the object specifier.
-
transform( in, from, withMatrix, replacingCurrent [, consideringRulerUnits=false]) -
Transform the page item.
inCoordinateSpaces The coordinate space to use fromThe 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. withMatrixTransform matrix. Can accept: Array of 6 Reals or TransformationMatrix. replacingCurrentTransform 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) consideringRulerUnitsbool 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) -
transformValuesOf( in)→ TransformationMatrix -
Get the transformation values of the page item.
inCoordinateSpaces The coordinate space to use