Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

[Ann] HTML/CHM for CS6 Javascript

Community Expert ,
Apr 27, 2012 Apr 27, 2012

I don't think I've ever been so fast before:

http://www.jongware.com/idjshelp.html is updated, it now also contains my Friendly Help for CS6, as both HTML (separate files) and CHM (one compiled file for use with a Windows Help viewer).

By way of experiment I added a "Full Index" to the HTML version. This is a single huge file, 2.7MB, but it contains links to all properties and methods in the entire set of files. So if you can't use the live one in the compiled CHM, you can still use this one to get a good overview of What to find Where.

... Enjoy!

TOPICS
Scripting
12.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 27, 2012 Apr 27, 2012

Jognware,

Thanks for that. Would it be possible for you to do a difference list, that is, to do a list with "what's new in CS6"? New properties, methods, and enumerations? I did a few of those in the past but it has become a bit of a hassle in recent years.

Thanks,

Peter

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 27, 2012 Apr 27, 2012

Aw, come on! I really like the layout of your lists (that nice font in particular ).

I don't know if I can do the same; purely theoretically it ought to be possible with XSLT (which, I'm sure you know, I am using to process the data files). But I can't think of a good method off the top of my head.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 27, 2012 Apr 27, 2012

Yeah, it's been on my list before. I believe what you want to do is just produce a file with the suite and class for all properties. You know:

Basics     Application     activeBook

Basics     Application     activeDocument

and then sort them and compare with diff. Similarly for the methods and enumerations and whatnot.

And I guess we could skip the suite, since it's not as easy in the XSLT since you'd have to look it up in the <map/> rather than just noting the parent properties in the <package/>.

Maybe I'll be enthused to try this before my idea of when Jongware wakes up 🙂

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 27, 2012 Apr 27, 2012
Maybe I'll be enthused to try this before my idea of when Jongware wakes up 🙂

Right. So, here's some XSLT:

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:output method="text"/>

  <xsl:template match="text()|@*"/> <!-- Suppress default text output -->

  <xsl:template match="property|method">

    <xsl:call-template name="list-name-and-grandparent-name-with-tabs"/>

  </xsl:template>

  <xsl:template name="list-name-and-grandparent-name-with-tabs">

    <xsl:value-of select="name()"/>

    <xsl:if test="../../@enumeration">(enum)</xsl:if>

    <xsl:text>&#9;</xsl:text>

    <xsl:value-of select="name()"/><xsl:text>&#9;</xsl:text>

    <xsl:value-of select="../../@name"/><xsl:text>&#9;</xsl:text>

    <xsl:value-of select="@name"/><xsl:text>&#9;</xsl:text>

    <xsl:text>&#10;</xsl:text>

  </xsl:template>

</xsl:stylesheet>

Hopefully it's self-explanatory. I even added the "(enum)" to distinguish enums from regular properties. Just for you, Peter K!

Then we just run it on the omv cachefiles, sort the output, and do some comparisons with "comm."

That is:

xsltproc omv.xsl omv\$indesign-7.5\$7.5.xml | sort > 7575.txt

xsltproc omv.xsl omv\$indesign-8.0\$8.0.xml | sort > 8080.txt

I hope it's not a dumb idea to put this all in one long post...

For instance, the following 29 items were removed from CS5.5 to CS6 (comm -23 7575.txt 8080.txt):

propertyButtonvisibilityInPdf
propertyDocumentPreferencemasterTextFrame
propertyDocumentPresetmasterTextFrame
propertyEPubExportPreferencecssExportOption
propertyEPubExportPreferenceexternalCSSPath
propertyEPubExportPreferenceformat
propertyEPubExportPreferencemarginUnit
propertyEPubExportPreferencespaceUnit
propertyEPubExportPreferenceuseTocStyle
propertyHTMLExportPreferencebottomMargin
propertyHTMLExportPreferenceexternalCSSPath
propertyHTMLExportPreferencejavascriptURL
propertyHTMLExportPreferenceleftMargin
propertyHTMLExportPreferencelinkToJavascript
propertyHTMLExportPreferencemarginUnit
propertyHTMLExportPreferencerightMargin
propertyHTMLExportPreferencespaceUnit
propertyHTMLExportPreferencetopMargin
propertyObjectExportOptioncustomImageAlignment
propertyObjectExportOptionspaceUnit
propertyPagesPanelverticalView
property(enum)SpaceUnitTypeCSS_EM
property(enum)SpaceUnitTypeCSS_PIXEL
property(enum)StyleSheetExportOptionEXTERNAL_CSS
property(enum)StyleSheetExportOptionSTYLE_NAME_ONLY
property(enum)VisibilityInPdfHIDDEN_BUT_PRINTABLE_IN_PDF
property(enum)VisibilityInPdfHIDDEN_IN_PDF
property(enum)VisibilityInPdfVISIBLE_BUT_DOES_NOT_PRINT_IN_PDF
property(enum)VisibilityInPdfVISIBLE_IN_PDF

And the following 1,984 were added in CS6 (comm -13 7575.txt 8080.txt):

methodButtoncontentPlace
methodCellStyleMappingaddEventListener
methodCellStyleMappinggetElements
methodCellStyleMappingremove
methodCellStyleMappingremoveEventListener
methodCellStyleMappingtoSource
methodCellStyleMappingtoSpecifier
methodCellStyleMappings[]
methodCellStyleMappingsadd
methodCellStyleMappingsanyItem
methodCellStyleMappingscount
methodCellStyleMappingseveryItem
methodCellStyleMappingsfirstItem
methodCellStyleMappingsitem
methodCellStyleMappingsitemByRange
methodCellStyleMappingslastItem
methodCellStyleMappingsmiddleItem
methodCellStyleMappingsnextItem
methodCellStyleMappingspreviousItem
methodCellStyleMappingstoSource
methodCharStyleMappingaddEventListener
methodCharStyleMappinggetElements
methodCharStyleMappingremove
methodCharStyleMappingremoveEventListener
methodCharStyleMappingtoSource
methodCharStyleMappingtoSpecifier
methodCharStyleMappings[]
methodCharStyleMappingsadd
methodCharStyleMappingsanyItem
methodCharStyleMappingscount
methodCharStyleMappingseveryItem
methodCharStyleMappingsfirstItem
methodCharStyleMappingsitem
methodCharStyleMappingsitemByRange
methodCharStyleMappingslastItem
methodCharStyleMappingsmiddleItem
methodCharStyleMappingsnextItem
methodCharStyleMappingspreviousItem
methodCharStyleMappingstoSource
methodCheckBoxaddEventListener
methodCheckBoxapplyObjectStyle
methodCheckBoxasynchronousExportFile
methodCheckBoxautoTag
methodCheckBoxbringForward
methodCheckBoxbringToFront
methodCheckBoxchangeObject
methodCheckBoxclearObjectStyleOverrides
methodCheckBoxclearTransformations
methodCheckBoxcontentPlace
methodCheckBoxconvertShape
methodCheckBoxconvertToObject
methodCheckBoxdetach
methodCheckBoxduplicate
methodCheckBoxexportFile
methodCheckBoxextractLabel
methodCheckBoxfindObject
methodCheckBoxfit
methodCheckBoxflipItem
methodCheckBoxgetElements
methodCheckBoxinsertLabel
methodCheckBoxmarkup
methodCheckBoxmove
methodCheckBoxoverride
methodCheckBoxplaceXML
methodCheckBoxredefineScaling
methodCheckBoxreframe
methodCheckBoxremove
methodCheckBoxremoveEventListener
methodCheckBoxremoveOverride
methodCheckBoxresize
methodCheckBoxresolve
methodCheckBoxselect
methodCheckBoxsendBackward
methodCheckBoxsendToBack
methodCheckBoxstore
methodCheckBoxtoSource
methodCheckBoxtoSpecifier
methodCheckBoxtransform
methodCheckBoxtransformAgain
methodCheckBoxtransformAgainIndividually
methodCheckBoxtransformSequenceAgain
methodCheckBoxtransformSequenceAgainIndividually
methodCheckBoxtransformValuesOf
methodCheckBoxes[]
methodCheckBoxesadd
methodCheckBoxesanyItem
methodCheckBoxescount
methodCheckBoxeseveryItem
methodCheckBoxesfirstItem
methodCheckBoxesitem
methodCheckBoxesitemByID
methodCheckBoxesitemByName
methodCheckBoxesitemByRange
methodCheckBoxeslastItem
methodCheckBoxesmiddleItem
methodCheckBoxesnextItem
methodCheckBoxespreviousItem
methodCheckBoxestoSource
methodClearFormBehavioraddEventListener
methodClearFormBehaviorextractLabel
methodClearFormBehaviorgetElements
methodClearFormBehaviorinsertLabel
methodClearFormBehaviorremove
methodClearFormBehaviorremoveEventListener
methodClearFormBehaviortoSource
methodClearFormBehaviortoSpecifier
methodClearFormBehaviors[]
methodClearFormBehaviorsadd
methodClearFormBehaviorsanyItem
methodClearFormBehaviorscount
methodClearFormBehaviorseveryItem
methodClearFormBehaviorsfirstItem
methodClearFormBehaviorsitem
methodClearFormBehaviorsitemByID
methodClearFormBehaviorsitemByName
methodClearFormBehaviorsitemByRange
methodClearFormBehaviorslastItem
methodClearFormBehaviorsmiddleItem
methodClearFormBehaviorsnextItem
methodClearFormBehaviorspreviousItem
methodClearFormBehaviorstoSource
methodComboBoxaddEventListener
methodComboBoxapplyObjectStyle
methodComboBoxasynchronousExportFile
methodComboBoxautoTag
methodComboBoxbringForward
methodComboBoxbringToFront
methodComboBoxchangeObject
methodComboBoxclearObjectStyleOverrides
methodComboBoxclearTransformations
methodComboBoxcontentPlace
methodComboBoxconvertShape
methodComboBoxconvertToObject
methodComboBoxdetach
methodComboBoxduplicate
methodComboBoxexportFile
methodComboBoxextractLabel
methodComboBoxfindObject
methodComboBoxfit
methodComboBoxflipItem
methodComboBoxgetElements
methodComboBoxinsertLabel
methodComboBoxmarkup
methodComboBoxmove
methodComboBoxoverride
methodComboBoxplaceXML
methodComboBoxredefineScaling
methodComboBoxreframe
methodComboBoxremove
methodComboBoxremoveEventListener
methodComboBoxremoveOverride
methodComboBoxresize
methodComboBoxresolve
methodComboBoxselect
methodComboBoxsendBackward
methodComboBoxsendToBack
methodComboBoxstore
methodComboBoxtoSource
methodComboBoxtoSpecifier
methodComboBoxtransform
methodComboBoxtransformAgain
methodComboBoxtransformAgainIndividually
methodComboBoxtransformSequenceAgain
methodComboBoxtransformSequenceAgainIndividually
methodComboBoxtransformValuesOf
methodComboBoxes[]
methodComboBoxesadd
methodComboBoxesanyItem
methodComboBoxescount
methodComboBoxeseveryItem
methodComboBoxesfirstItem
methodComboBoxesitem
methodComboBoxesitemByID
methodComboBoxesitemByName
methodComboBoxesitemByRange
methodComboBoxeslastItem
methodComboBoxesmiddleItem
methodComboBoxesnextItem
methodComboBoxespreviousItem
methodComboBoxestoSource
methodContentPlacerObjectaddEventListener
methodContentPlacerObjectgetElements
methodContentPlacerObjectload
methodContentPlacerObjectremoveEventListener
methodContentPlacerObjecttoSource
methodContentPlacerObjecttoSpecifier
methodDocumentcreateAlternateLayout
methodDocumentdeleteAlternateLayout
methodEPScontentPlace
methodEPSTextcontentPlace
methodFontLockingPreferenceaddEventListener
methodFontLockingPreferencegetElements
methodFontLockingPreferenceremoveEventListener
methodFontLockingPreferencetoSource
methodFontLockingPreferencetoSpecifier
methodFormFieldcontentPlace
methodGraphiccontentPlace
methodGraphicLinecontentPlace
methodGroupcontentPlace
methodGuideresolve
methodGuidetransformValuesOf
methodHtmlItemaddEventListener
methodHtmlItemapplyObjectStyle
methodHtmlItemasynchronousExportFile
methodHtmlItemautoTag
methodHtmlItemchangeObject
methodHtmlItemclearObjectStyleOverrides
methodHtmlItemclearTransformations
methodHtmlItemcontentPlace
methodHtmlItemconvertShape
methodHtmlItemdetach
methodHtmlItemduplicate
methodHtmlItemexportFile
methodHtmlItemextractLabel
methodHtmlItemfindObject
methodHtmlItemfit
methodHtmlItemflipItem
methodHtmlItemgetElements
methodHtmlIteminsertLabel
methodHtmlItemmarkup
methodHtmlItemmove
methodHtmlItemoverride
methodHtmlItemplace
methodHtmlItemplaceXML
methodHtmlItemredefineScaling
methodHtmlItemreframe
methodHtmlItemremove
methodHtmlItemremoveEventListener
methodHtmlItemremoveOverride
methodHtmlItemresize
methodHtmlItemresolve
methodHtmlItemselect
methodHtmlItemstore
methodHtmlItemtoSource
methodHtmlItemtoSpecifier
methodHtmlItemtransform
methodHtmlItemtransformAgain
methodHtmlItemtransformAgainIndividually
methodHtmlItemtransformSequenceAgain
methodHtmlItemtransformSequenceAgainIndividually
methodHtmlItemtransformValuesOf
methodHtmlItems[]
methodHtmlItemsadd
methodHtmlItemsanyItem
methodHtmlItemscount
methodHtmlItemseveryItem
methodHtmlItemsfirstItem
methodHtmlItemsitem
methodHtmlItemsitemByID
methodHtmlItemsitemByName
methodHtmlItemsitemByRange
methodHtmlItemslastItem
methodHtmlItemsmiddleItem
methodHtmlItemsnextItem
methodHtmlItemspreviousItem
methodHtmlItemstoSource
methodImagecontentPlace
methodImportedPagecontentPlace
methodLinkgoToSource
methodLinkedPageItemOptionaddEventListener
methodLinkedPageItemOptiongetElements
methodLinkedPageItemOptionremoveEventListener
methodLinkedPageItemOptiontoSource
methodLinkedPageItemOptiontoSpecifier
methodListBoxaddEventListener
methodListBoxapplyObjectStyle
methodListBoxasynchronousExportFile
methodListBoxautoTag
methodListBoxbringForward
methodListBoxbringToFront
methodListBoxchangeObject
methodListBoxclearObjectStyleOverrides
methodListBoxclearTransformations
methodListBoxcontentPlace
methodListBoxconvertShape
methodListBoxconvertToObject
methodListBoxdetach
methodListBoxduplicate
methodListBoxexportFile
methodListBoxextractLabel
methodListBoxfindObject
methodListBoxfit
methodListBoxflipItem
methodListBoxgetElements
methodListBoxinsertLabel
methodListBoxmarkup
methodListBoxmove
methodListBoxoverride
methodListBoxplaceXML
methodListBoxredefineScaling
methodListBoxreframe
methodListBoxremove
methodListBoxremoveEventListener
methodListBoxremoveOverride
methodListBoxresize
methodListBoxresolve
methodListBoxselect
methodListBoxsendBackward
methodListBoxsendToBack
methodListBoxstore
methodListBoxtoSource
methodListBoxtoSpecifier
methodListBoxtransform
methodListBoxtransformAgain
methodListBoxtransformAgainIndividually
methodListBoxtransformSequenceAgain
methodListBoxtransformSequenceAgainIndividually
methodListBoxtransformValuesOf
methodListBoxes[]
methodListBoxesadd
methodListBoxesanyItem
methodListBoxescount
methodListBoxeseveryItem
methodListBoxesfirstItem
methodListBoxesitem
methodListBoxesitemByID
methodListBoxesitemByName
methodListBoxesitemByRange
methodListBoxeslastItem
methodListBoxesmiddleItem
methodListBoxesnextItem
methodListBoxespreviousItem
methodListBoxestoSource
methodMasterSpreadcontentPlace
methodMediaItemcontentPlace
methodMoviecontentPlace
methodMultiStateObjectcontentPlace
methodOvalcontentPlace
methodPDFcontentPlace
methodPICTcontentPlace
methodPNGExportPreferenceaddEventListener
methodPNGExportPreferencegetElements
methodPNGExportPreferenceremoveEventListener
methodPNGExportPreferencetoSource
methodPNGExportPreferencetoSpecifier
methodPagecontentPlace
methodPagedeleteAllLayoutSnapshots
methodPagedeleteLayoutSnapshot
methodPagesnapshotCurrentLayout
methodPageItemcontentPlace
methodParaStyleMappingaddEventListener
methodParaStyleMappinggetElements
methodParaStyleMappingremove
methodParaStyleMappingremoveEventListener
methodParaStyleMappingtoSource
methodParaStyleMappingtoSpecifier
methodParaStyleMappings[]
methodParaStyleMappingsadd
methodParaStyleMappingsanyItem
methodParaStyleMappingscount
methodParaStyleMappingseveryItem
methodParaStyleMappingsfirstItem
methodParaStyleMappingsitem
methodParaStyleMappingsitemByRange
methodParaStyleMappingslastItem
methodParaStyleMappingsmiddleItem
methodParaStyleMappingsnextItem
methodParaStyleMappingspreviousItem
methodParaStyleMappingstoSource
methodPolygoncontentPlace
methodPrintFormBehavioraddEventListener
methodPrintFormBehaviorextractLabel
methodPrintFormBehaviorgetElements
methodPrintFormBehaviorinsertLabel
methodPrintFormBehaviorremove
methodPrintFormBehaviorremoveEventListener
methodPrintFormBehaviortoSource
methodPrintFormBehaviortoSpecifier
methodPrintFormBehaviors[]
methodPrintFormBehaviorsadd
methodPrintFormBehaviorsanyItem
methodPrintFormBehaviorscount
methodPrintFormBehaviorseveryItem
methodPrintFormBehaviorsfirstItem
methodPrintFormBehaviorsitem
methodPrintFormBehaviorsitemByID
methodPrintFormBehaviorsitemByName
methodPrintFormBehaviorsitemByRange
methodPrintFormBehaviorslastItem
methodPrintFormBehaviorsmiddleItem
methodPrintFormBehaviorsnextItem
methodPrintFormBehaviorspreviousItem
methodPrintFormBehaviorstoSource
methodRadioButtonaddEventListener
methodRadioButtonapplyObjectStyle
methodRadioButtonasynchronousExportFile
methodRadioButtonautoTag
methodRadioButtonbringForward
methodRadioButtonbringToFront
methodRadioButtonchangeObject
methodRadioButtonclearObjectStyleOverrides
methodRadioButtonclearTransformations
methodRadioButtoncontentPlace
methodRadioButtonconvertShape
methodRadioButtonconvertToObject
methodRadioButtondetach
methodRadioButtonduplicate
methodRadioButtonexportFile
methodRadioButtonextractLabel
methodRadioButtonfindObject
methodRadioButtonfit
methodRadioButtonflipItem
methodRadioButtongetElements
methodRadioButtoninsertLabel
methodRadioButtonmarkup
methodRadioButtonmove
methodRadioButtonoverride
methodRadioButtonplaceXML
methodRadioButtonredefineScaling
methodRadioButtonreframe
methodRadioButtonremove
methodRadioButtonremoveEventListener
methodRadioButtonremoveOverride
methodRadioButtonresize
methodRadioButtonresolve
methodRadioButtonselect
methodRadioButtonsendBackward
methodRadioButtonsendToBack
methodRadioButtonstore
methodRadioButtontoSource
methodRadioButtontoSpecifier
methodRadioButtontransform
methodRadioButtontransformAgain
methodRadioButtontransformAgainIndividually
methodRadioButtontransformSequenceAgain
methodRadioButtontransformSequenceAgainIndividually
methodRadioButtontransformValuesOf
methodRadioButtons[]
methodRadioButtonsadd
methodRadioButtonsanyItem
methodRadioButtonscount
methodRadioButtonseveryItem
methodRadioButtonsfirstItem
methodRadioButtonsitem
methodRadioButtonsitemByID
methodRadioButtonsitemByName
methodRadioButtonsitemByRange
methodRadioButtonslastItem
methodRadioButtonsmiddleItem
methodRadioButtonsnextItem
methodRadioButtonspreviousItem
methodRadioButtonstoSource
methodRectanglecontentPlace
methodSignatureFieldaddEventListener
methodSignatureFieldapplyObjectStyle
methodSignatureFieldasynchronousExportFile
methodSignatureFieldautoTag
methodSignatureFieldbringForward
methodSignatureFieldbringToFront
methodSignatureFieldchangeObject
methodSignatureFieldclearObjectStyleOverrides
methodSignatureFieldclearTransformations
methodSignatureFieldcontentPlace
methodSignatureFieldconvertShape
methodSignatureFieldconvertToObject
methodSignatureFielddetach
methodSignatureFieldduplicate
methodSignatureFieldexportFile
methodSignatureFieldextractLabel
methodSignatureFieldfindObject
methodSignatureFieldfit
methodSignatureFieldflipItem
methodSignatureFieldgetElements
methodSignatureFieldinsertLabel
methodSignatureFieldmarkup
methodSignatureFieldmove
methodSignatureFieldoverride
methodSignatureFieldplaceXML
methodSignatureFieldredefineScaling
methodSignatureFieldreframe
methodSignatureFieldremove
methodSignatureFieldremoveEventListener
methodSignatureFieldremoveOverride
methodSignatureFieldresize
methodSignatureFieldresolve
methodSignatureFieldselect
methodSignatureFieldsendBackward
methodSignatureFieldsendToBack
methodSignatureFieldstore
methodSignatureFieldtoSource
methodSignatureFieldtoSpecifier
methodSignatureFieldtransform
methodSignatureFieldtransformAgain
methodSignatureFieldtransformAgainIndividually
methodSignatureFieldtransformSequenceAgain
methodSignatureFieldtransformSequenceAgainIndividually
methodSignatureFieldtransformValuesOf
methodSignatureFields[]
methodSignatureFieldsadd
methodSignatureFieldsanyItem
methodSignatureFieldscount
methodSignatureFieldseveryItem
methodSignatureFieldsfirstItem
methodSignatureFieldsitem
methodSignatureFieldsitemByID
methodSignatureFieldsitemByName
methodSignatureFieldsitemByRange
methodSignatureFieldslastItem
methodSignatureFieldsmiddleItem
methodSignatureFieldsnextItem
methodSignatureFieldspreviousItem
methodSignatureFieldstoSource
methodSoundcontentPlace
methodSplineItemcontentPlace
methodSpreadcontentPlace
methodSubmitFormBehavioraddEventListener
methodSubmitFormBehaviorextractLabel
methodSubmitFormBehaviorgetElements
methodSubmitFormBehaviorinsertLabel
methodSubmitFormBehaviorremove
methodSubmitFormBehaviorremoveEventListener
methodSubmitFormBehaviortoSource
methodSubmitFormBehaviortoSpecifier
methodSubmitFormBehaviors[]
methodSubmitFormBehaviorsadd
methodSubmitFormBehaviorsanyItem
methodSubmitFormBehaviorscount
methodSubmitFormBehaviorseveryItem
methodSubmitFormBehaviorsfirstItem
methodSubmitFormBehaviorsitem
methodSubmitFormBehaviorsitemByID
methodSubmitFormBehaviorsitemByName
methodSubmitFormBehaviorsitemByRange
methodSubmitFormBehaviorslastItem
methodSubmitFormBehaviorsmiddleItem
methodSubmitFormBehaviorsnextItem
methodSubmitFormBehaviorspreviousItem
methodSubmitFormBehaviorstoSource
methodTableStyleMappingaddEventListener
methodTableStyleMappinggetElements
methodTableStyleMappingremove
methodTableStyleMappingremoveEventListener
methodTableStyleMappingtoSource
methodTableStyleMappingtoSpecifier
methodTableStyleMappings[]
methodTableStyleMappingsadd
methodTableStyleMappingsanyItem
methodTableStyleMappingscount
methodTableStyleMappingseveryItem
methodTableStyleMappingsfirstItem
methodTableStyleMappingsitem
methodTableStyleMappingsitemByRange
methodTableStyleMappingslastItem
methodTableStyleMappingsmiddleItem
methodTableStyleMappingsnextItem
methodTableStyleMappingspreviousItem
methodTableStyleMappingstoSource
methodTextBoxaddEventListener
methodTextBoxapplyObjectStyle
methodTextBoxasynchronousExportFile
methodTextBoxautoTag
methodTextBoxbringForward
methodTextBoxbringToFront
methodTextBoxchangeObject
methodTextBoxclearObjectStyleOverrides
methodTextBoxclearTransformations
methodTextBoxcontentPlace
methodTextBoxconvertShape
methodTextBoxconvertToObject
methodTextBoxdetach
methodTextBoxduplicate
methodTextBoxexportFile
methodTextBoxextractLabel
methodTextBoxfindObject
methodTextBoxfit
methodTextBoxflipItem
methodTextBoxgetElements
methodTextBoxinsertLabel
methodTextBoxmarkup
methodTextBoxmove
methodTextBoxoverride
methodTextBoxplaceXML
methodTextBoxredefineScaling
methodTextBoxreframe
methodTextBoxremove
methodTextBoxremoveEventListener
methodTextBoxremoveOverride
methodTextBoxresize
methodTextBoxresolve
methodTextBoxselect
methodTextBoxsendBackward
methodTextBoxsendToBack
methodTextBoxstore
methodTextBoxtoSource
methodTextBoxtoSpecifier
methodTextBoxtransform
methodTextBoxtransformAgain
methodTextBoxtransformAgainIndividually
methodTextBoxtransformSequenceAgain
methodTextBoxtransformSequenceAgainIndividually
methodTextBoxtransformValuesOf
methodTextBoxes[]
methodTextBoxesadd
methodTextBoxesanyItem
methodTextBoxescount
methodTextBoxeseveryItem
methodTextBoxesfirstItem
methodTextBoxesitem
methodTextBoxesitemByID
methodTextBoxesitemByName
methodTextBoxesitemByRange
methodTextBoxeslastItem
methodTextBoxesmiddleItem
methodTextBoxesnextItem
methodTextBoxespreviousItem
methodTextBoxestoSource
methodTextFramecontentPlace
methodWMFcontentPlace
propertyApplicationcellStyleMappings
propertyApplicationcharStyleMappings
propertyApplicationcontentPlacer
propertyApplicationfontLockingPreferences
propertyApplicationlinkedPageItemOptions
propertyApplicationparaStyleMappings
propertyApplicationpngExportPreferences
propertyApplicationselectionKeyObject
propertyApplicationtableStyleMappings
propertyButtonclearFormBehaviors
propertyButtonhiddenUntilTriggered
propertyButtonhorizontalLayoutConstraints
propertyButtonlinkedPageItemOptions
propertyButtonprintFormBehaviors
propertyButtonprintableInPdf
propertyButtonsubmitFormBehaviors
propertyButtonverticalLayoutConstraints
propertyCellcheckBoxes
propertyCellcomboBoxes
propertyCelllistBoxes
propertyCellradioButtons
propertyCellsignatureFields
propertyCelltextBoxes
propertyCellStyleMappingdestinationStyleName
propertyCellStyleMappingeventListeners
propertyCellStyleMappingevents
propertyCellStyleMappingindex
propertyCellStyleMappingisValid
propertyCellStyleMappingmappingRuleType
propertyCellStyleMappingparent
propertyCellStyleMappingproperties
propertyCellStyleMappingsourceStyleName
propertyCellStyleMappingslength
propertyChangeGrepPreferenceparagraphKashidaWidth
propertyChangeObjectPreferenceautoSizingReferencePoint
propertyChangeObjectPreferenceautoSizingType
propertyChangeObjectPreferenceminimumHeightForAutoSizing
propertyChangeObjectPreferenceminimumWidthForAutoSizing
propertyChangeObjectPreferenceuseMinimumHeightForAutoSizing
propertyChangeObjectPreferenceuseMinimumWidthForAutoSizing
propertyChangeObjectPreferenceuseNoLineBreaksForAutoSizing
propertyChangeTextPreferenceparagraphKashidaWidth
propertyCharStyleMappingdestinationStyleName
propertyCharStyleMappingeventListeners
propertyCharStyleMappingevents
propertyCharStyleMappingindex
propertyCharStyleMappingisValid
propertyCharStyleMappingmappingRuleType
propertyCharStyleMappingparent
propertyCharStyleMappingproperties
propertyCharStyleMappingsourceStyleName
propertyCharStyleMappingslength
propertyCharactercheckBoxes
propertyCharactercomboBoxes
propertyCharacterlistBoxes
propertyCharacterparagraphKashidaWidth
propertyCharacterradioButtons
propertyCharactersignatureFields
propertyCharactertextBoxes
propertyCheckBoxAFTER_PLACE
propertyCheckBoxBEFORE_PLACE
propertyCheckBoxabsoluteFlip
propertyCheckBoxabsoluteHorizontalScale
propertyCheckBoxabsoluteRotationAngle
propertyCheckBoxabsoluteShearAngle
propertyCheckBoxabsoluteVerticalScale
propertyCheckBoxactiveStateIndex
propertyCheckBoxallArticles
propertyCheckBoxallGraphics
propertyCheckBoxallPageItems
propertyCheckBoxallowOverrides
propertyCheckBoxanchoredObjectSettings
propertyCheckBoxanimationSettings
propertyCheckBoxappliedObjectStyle
propertyCheckBoxassociatedXMLElement
propertyCheckBoxbehaviors
propertyCheckBoxbottomLeftCornerOption
propertyCheckBoxbottomLeftCornerRadius
propertyCheckBoxbottomRightCornerOption
propertyCheckBoxbottomRightCornerRadius
propertyCheckBoxcheckedByDefault
propertyCheckBoxclearFormBehaviors
propertyCheckBoxcontentTransparencySettings
propertyCheckBoxdescription
propertyCheckBoxendCap
propertyCheckBoxendJoin
propertyCheckBoxepss
propertyCheckBoxepstexts
propertyCheckBoxeventListeners
propertyCheckBoxevents
propertyCheckBoxexportValue
propertyCheckBoxfillColor
propertyCheckBoxfillTint
propertyCheckBoxfillTransparencySettings
propertyCheckBoxflip
propertyCheckBoxgapColor
propertyCheckBoxgapTint
propertyCheckBoxgeometricBounds
propertyCheckBoxgotoAnchorBehaviors
propertyCheckBoxgotoFirstPageBehaviors
propertyCheckBoxgotoLastPageBehaviors
propertyCheckBoxgotoNextPageBehaviors
propertyCheckBoxgotoNextViewBehaviors
propertyCheckBoxgotoPreviousPageBehaviors
propertyCheckBoxgotoPreviousViewBehaviors
propertyCheckBoxgotoURLBehaviors
propertyCheckBoxgradientFillAngle
propertyCheckBoxgradientFillLength
propertyCheckBoxgradientFillStart
propertyCheckBoxgradientStrokeAngle
propertyCheckBoxgradientStrokeLength
propertyCheckBoxgradientStrokeStart
propertyCheckBoxgraphicLines
propertyCheckBoxgraphics
propertyCheckBoxgroups
propertyCheckBoxhiddenUntilTriggered
propertyCheckBoxhorizontalLayoutConstraints
propertyCheckBoxhorizontalScale
propertyCheckBoxid
propertyCheckBoximages
propertyCheckBoxindex
propertyCheckBoxisValid
propertyCheckBoxitemLayer
propertyCheckBoxlabel
propertyCheckBoxleftLineEnd
propertyCheckBoxlinkedPageItemOptions
propertyCheckBoxlocalDisplaySetting
propertyCheckBoxlocked
propertyCheckBoxmiterLimit
propertyCheckBoxmovieBehaviors
propertyCheckBoxname
propertyCheckBoxnonprinting
propertyCheckBoxopenFileBehaviors
propertyCheckBoxovals
propertyCheckBoxoverprintFill
propertyCheckBoxoverprintGap
propertyCheckBoxoverprintStroke
propertyCheckBoxoverridden
propertyCheckBoxoverriddenMasterPageItem
propertyCheckBoxpageItems
propertyCheckBoxparent
propertyCheckBoxparentPage
propertyCheckBoxpdfs
propertyCheckBoxpicts
propertyCheckBoxpolygons
propertyCheckBoxpreferences
propertyCheckBoxprintFormBehaviors
propertyCheckBoxprintableInPdf
propertyCheckBoxproperties
propertyCheckBoxreadOnly
propertyCheckBoxrectangles
propertyCheckBoxrequired
propertyCheckBoxrightLineEnd
propertyCheckBoxrotationAngle
propertyCheckBoxshearAngle
propertyCheckBoxshowHideFieldsBehaviors
propertyCheckBoxsoundBehaviors
propertyCheckBoxsplineItems
propertyCheckBoxstates
propertyCheckBoxstrokeAlignment
propertyCheckBoxstrokeColor
propertyCheckBoxstrokeCornerAdjustment
propertyCheckBoxstrokeDashAndGap
propertyCheckBoxstrokeTint
propertyCheckBoxstrokeTransparencySettings
propertyCheckBoxstrokeType
propertyCheckBoxstrokeWeight
propertyCheckBoxsubmitFormBehaviors
propertyCheckBoxtextFrames
propertyCheckBoxtextWrapPreferences
propertyCheckBoxtimingSettings
propertyCheckBoxtopLeftCornerOption
propertyCheckBoxtopLeftCornerRadius
propertyCheckBoxtopRightCornerOption
propertyCheckBoxtopRightCornerRadius
propertyCheckBoxtransparencySettings
propertyCheckBoxverticalLayoutConstraints
propertyCheckBoxverticalScale
propertyCheckBoxviewZoomBehaviors
propertyCheckBoxvisible
propertyCheckBoxvisibleBounds
propertyCheckBoxwmfs
propertyCheckBoxeslength
propertyClearFormBehaviorbehaviorEvent
propertyClearFormBehaviorenableBehavior
propertyClearFormBehavioreventListeners
propertyClearFormBehaviorevents
propertyClearFormBehaviorid
propertyClearFormBehaviorindex
propertyClearFormBehaviorisValid
propertyClearFormBehaviorlabel
propertyClearFormBehaviorname
propertyClearFormBehaviorparent
propertyClearFormBehaviorproperties
propertyClearFormBehaviorslength
propertyComboBoxAFTER_PLACE
propertyComboBoxBEFORE_PLACE
propertyComboBoxabsoluteFlip
propertyComboBoxabsoluteHorizontalScale
propertyComboBoxabsoluteRotationAngle
propertyComboBoxabsoluteShearAngle
propertyComboBoxabsoluteVerticalScale
propertyComboBoxactiveStateIndex
propertyComboBoxallArticles
propertyComboBoxallGraphics
propertyComboBoxallPageItems
propertyComboBoxallowOverrides
propertyComboBoxanchoredObjectSettings
propertyComboBoxanimationSettings
propertyComboBoxappliedObjectStyle
propertyComboBoxassociatedXMLElement
propertyComboBoxbehaviors
propertyComboBoxbottomLeftCornerOption
propertyComboBoxbottomLeftCornerRadius
propertyComboBoxbottomRightCornerOption
propertyComboBoxbottomRightCornerRadius
propertyComboBoxchoiceList
propertyComboBoxclearFormBehaviors
propertyComboBoxcontentTransparencySettings
propertyComboBoxdescription
propertyComboBoxendCap
propertyComboBoxendJoin
propertyComboBoxepss
propertyComboBoxepstexts
propertyComboBoxeventListeners
propertyComboBoxevents
propertyComboBoxfillColor
propertyComboBoxfillTint
propertyComboBoxfillTransparencySettings
propertyComboBoxflip
propertyComboBoxfontSize
propertyComboBoxgapColor
propertyComboBoxgapTint
propertyComboBoxgeometricBounds
propertyComboBoxgotoAnchorBehaviors
propertyComboBoxgotoFirstPageBehaviors
propertyComboBoxgotoLastPageBehaviors
propertyComboBoxgotoNextPageBehaviors
propertyComboBoxgotoNextViewBehaviors
propertyComboBoxgotoPreviousPageBehaviors
propertyComboBoxgotoPreviousViewBehaviors
propertyComboBoxgotoURLBehaviors
propertyComboBoxgradientFillAngle
propertyComboBoxgradientFillLength
propertyComboBoxgradientFillStart
propertyComboBoxgradientStrokeAngle
propertyComboBoxgradientStrokeLength
propertyComboBoxgradientStrokeStart
propertyComboBoxgraphicLines
propertyComboBoxgraphics
propertyComboBoxgroups
propertyComboBoxhiddenUntilTriggered
propertyComboBoxhorizontalLayoutConstraints
propertyComboBoxhorizontalScale
propertyComboBoxid
propertyComboBoximages
propertyComboBoxindex
propertyComboBoxisValid
propertyComboBoxitemLayer
propertyComboBoxlabel
propertyComboBoxleftLineEnd
propertyComboBoxlinkedPageItemOptions
propertyComboBoxlocalDisplaySetting
propertyComboBoxlocked
propertyComboBoxmiterLimit
propertyComboBoxmovieBehaviors
propertyComboBoxname
propertyComboBoxnonprinting
propertyComboBoxopenFileBehaviors
propertyComboBoxovals
propertyComboBoxoverprintFill
propertyComboBoxoverprintGap
propertyComboBoxoverprintStroke
propertyComboBoxoverridden
propertyComboBoxoverriddenMasterPageItem
propertyComboBoxpageItems
propertyComboBoxparent
propertyComboBoxparentPage
propertyComboBoxpdfs
propertyComboBoxpicts
propertyComboBoxpolygons
propertyComboBoxpreferences
propertyComboBoxprintFormBehaviors
propertyComboBoxprintableInPdf
propertyComboBoxproperties
propertyComboBoxreadOnly
propertyComboBoxrectangles
propertyComboBoxrequired
propertyComboBoxrightLineEnd
propertyComboBoxrightToLeftField
propertyComboBoxrotationAngle
propertyComboBoxshearAngle
propertyComboBoxshowHideFieldsBehaviors
propertyComboBoxsortChoices
propertyComboBoxsoundBehaviors
propertyComboBoxsplineItems
propertyComboBoxstrokeAlignment
propertyComboBoxstrokeColor
propertyComboBoxstrokeCornerAdjustment
propertyComboBoxstrokeDashAndGap
propertyComboBoxstrokeTint
propertyComboBoxstrokeTransparencySettings
propertyComboBoxstrokeType
propertyComboBoxstrokeWeight
propertyComboBoxsubmitFormBehaviors
propertyComboBoxtextFrames
propertyComboBoxtextWrapPreferences
propertyComboBoxtimingSettings
propertyComboBoxtopLeftCornerOption
propertyComboBoxtopLeftCornerRadius
propertyComboBoxtopRightCornerOption
propertyComboBoxtopRightCornerRadius
propertyComboBoxtransparencySettings
propertyComboBoxverticalLayoutConstraints
propertyComboBoxverticalScale
propertyComboBoxviewZoomBehaviors
propertyComboBoxvisible
propertyComboBoxvisibleBounds
propertyComboBoxwmfs
propertyComboBoxeslength
propertyContentPlacerObjecteventListeners
propertyContentPlacerObjectevents
propertyContentPlacerObjectisValid
propertyContentPlacerObjectloaded
propertyContentPlacerObjectparent
propertyContentPlacerObjectproperties
propertyDocumentcellStyleMappings
propertyDocumentcharStyleMappings
propertyDocumentcheckBoxes
propertyDocumentcomboBoxes
propertyDocumentlinkedPageItemOptions
propertyDocumentlistBoxes
propertyDocumentparaStyleMappings
propertyDocumentradioButtons
propertyDocumentselectionKeyObject
propertyDocumentsignatureFields
propertyDocumenttableStyleMappings
propertyDocumenttextBoxes
propertyDocumentPreferencecreatePrimaryTextFrame
propertyDocumentPresetcreatePrimaryTextFrame
propertyEPShorizontalLayoutConstraints
propertyEPSlinkedPageItemOptions
propertyEPSverticalLayoutConstraints
propertyEPSTexthorizontalLayoutConstraints
propertyEPSTextlinkedPageItemOptions
propertyEPSTextverticalLayoutConstraints
propertyEPubExportPreferenceexternalStyleSheets
propertyEPubExportPreferencejavascripts
propertyEPubExportPreferenceversion
propertyFindGrepPreferenceparagraphKashidaWidth
propertyFindObjectPreferenceautoSizingReferencePoint
propertyFindObjectPreferenceautoSizingType
propertyFindObjectPreferenceminimumHeightForAutoSizing
propertyFindObjectPreferenceminimumWidthForAutoSizing
propertyFindObjectPreferenceuseMinimumHeightForAutoSizing
propertyFindObjectPreferenceuseMinimumWidthForAutoSizing
propertyFindObjectPreferenceuseNoLineBreaksForAutoSizing
propertyFindTextPreferenceparagraphKashidaWidth
propertyFontLockingPreferenceeventListeners
propertyFontLockingPreferenceevents
propertyFontLockingPreferencefontChangeLocking
propertyFontLockingPreferencefontInputLocking
propertyFontLockingPreferenceisValid
propertyFontLockingPreferenceparent
propertyFontLockingPreferenceproperties
propertyFormFieldhorizontalLayoutConstraints
propertyFormFieldlinkedPageItemOptions
propertyFormFieldverticalLayoutConstraints
propertyGeneralPreferencecreateLinksOnContentPlace
propertyGeneralPreferencecustomMonitorPpi
propertyGeneralPreferencegreekVectorGraphicsOnDrag
propertyGeneralPreferencemainMonitorPpi
propertyGeneralPreferencemapStylesOnContentPlace
propertyGeneralPreferencepreviewPages
propertyGeneralPreferenceshowConveyor
propertyGeneralPreferenceuseCustomMonitorResolution
propertyGraphichorizontalLayoutConstraints
propertyGraphiclinkedPageItemOptions
propertyGraphicverticalLayoutConstraints
propertyGraphicLinecheckBoxes
propertyGraphicLinecomboBoxes
propertyGraphicLinehorizontalLayoutConstraints
propertyGraphicLinehtmlItems
propertyGraphicLinelinkedPageItemOptions
propertyGraphicLinelistBoxes
propertyGraphicLineradioButtons
propertyGraphicLinesignatureFields
propertyGraphicLinetextBoxes
propertyGraphicLineverticalLayoutConstraints
propertyGroupcheckBoxes
propertyGroupcomboBoxes
propertyGrouphorizontalLayoutConstraints
propertyGrouplinkedPageItemOptions
propertyGrouplistBoxes
propertyGroupradioButtons
propertyGroupsignatureFields
propertyGrouptextBoxes
propertyGroupverticalLayoutConstraints
propertyGuideguideType
propertyGuideguideZone
propertyHTMLExportPreferenceexternalStyleSheets
propertyHTMLExportPreferencejavascripts
propertyHtmlItemAFTER_PLACE
propertyHtmlItemBEFORE_PLACE
propertyHtmlItemabsoluteFlip
propertyHtmlItemabsoluteHorizontalScale
propertyHtmlItemabsoluteRotationAngle
propertyHtmlItemabsoluteShearAngle
propertyHtmlItemabsoluteVerticalScale
propertyHtmlItemallArticles
propertyHtmlItemallGraphics
propertyHtmlItemallPageItems
propertyHtmlItemallowOverrides
propertyHtmlItemanimationSettings
propertyHtmlItemappliedObjectStyle
propertyHtmlItemassociatedXMLElement
propertyHtmlItembottomLeftCornerOption
propertyHtmlItembottomLeftCornerRadius
propertyHtmlItembottomRightCornerOption
propertyHtmlItembottomRightCornerRadius
propertyHtmlItemcontentTransparencySettings
propertyHtmlItemendCap
propertyHtmlItemendJoin
propertyHtmlItemeventListeners
propertyHtmlItemevents
propertyHtmlItemfillColor
propertyHtmlItemfillTint
propertyHtmlItemfillTransparencySettings
propertyHtmlItemfixedDimensions
propertyHtmlItemflip
propertyHtmlItemgapColor
propertyHtmlItemgapTint
propertyHtmlItemgeometricBounds
propertyHtmlItemgradientFillAngle
propertyHtmlItemgradientFillLength
propertyHtmlItemgradientFillStart
propertyHtmlItemgradientStrokeAngle
propertyHtmlItemgradientStrokeLength
propertyHtmlItemgradientStrokeStart
propertyHtmlItemhorizontalLayoutConstraints
propertyHtmlItemhorizontalScale
propertyHtmlItemhtmlContent
propertyHtmlItemid
propertyHtmlItemindex
propertyHtmlItemisValid
propertyHtmlItemitemLayer
propertyHtmlItemlabel
propertyHtmlItemleftLineEnd
propertyHtmlItemlinkedPageItemOptions
propertyHtmlItemlocalDisplaySetting
propertyHtmlItemlocked
propertyHtmlItemmiterLimit
propertyHtmlItemname
propertyHtmlItemnonprinting
propertyHtmlItemoverprintFill
propertyHtmlItemoverprintGap
propertyHtmlItemoverprintStroke
propertyHtmlItemoverridden
propertyHtmlItemoverriddenMasterPageItem
propertyHtmlItemparent
propertyHtmlItemparentPage
propertyHtmlItempreferences
propertyHtmlItemproperties
propertyHtmlItemrightLineEnd
propertyHtmlItemrotationAngle
propertyHtmlItemshearAngle
propertyHtmlItemstrokeAlignment
propertyHtmlItemstrokeColor
propertyHtmlItemstrokeCornerAdjustment
propertyHtmlItemstrokeDashAndGap
propertyHtmlItemstrokeTint
propertyHtmlItemstrokeTransparencySettings
propertyHtmlItemstrokeType
propertyHtmlItemstrokeWeight
propertyHtmlItemtextWrapPreferences
propertyHtmlItemtimingSettings
propertyHtmlItemtopLeftCornerOption
propertyHtmlItemtopLeftCornerRadius
propertyHtmlItemtopRightCornerOption
propertyHtmlItemtopRightCornerRadius
propertyHtmlItemtransparencySettings
propertyHtmlItemverticalLayoutConstraints
propertyHtmlItemverticalScale
propertyHtmlItemvisible
propertyHtmlItemvisibleBounds
propertyHtmlItemslength
propertyIMEPreferenceuseNativeDigits
propertyImagehorizontalLayoutConstraints
propertyImagelinkedPageItemOptions
propertyImageverticalLayoutConstraints
propertyImportedPagehorizontalLayoutConstraints
propertyImportedPagelinkedPageItemOptions
propertyImportedPageverticalLayoutConstraints
propertyInsertionPointcheckBoxes
propertyInsertionPointcomboBoxes
propertyInsertionPointlistBoxes
propertyInsertionPointparagraphKashidaWidth
propertyInsertionPointradioButtons
propertyInsertionPointsignatureFields
propertyInsertionPointtextBoxes
propertyInteractivePDFExportPreferenceusePDFStructureForTabOrder
propertyLayercheckBoxes
propertyLayercomboBoxes
propertyLayerlistBoxes
propertyLayerradioButtons
propertyLayersignatureFields
propertyLayertextBoxes
propertyLayoutWindowselectionKeyObject
propertyLinecheckBoxes
propertyLinecomboBoxes
propertyLinelistBoxes
propertyLineparagraphKashidaWidth
propertyLineradioButtons
propertyLinesignatureFields
propertyLinetextBoxes
propertyLinkedPageItemOptioneventListeners
propertyLinkedPageItemOptionevents
propertyLinkedPageItemOptionisValid
propertyLinkedPageItemOptionparent
propertyLinkedPageItemOptionpreserveAppearance
propertyLinkedPageItemOptionpreserveFrameContent
propertyLinkedPageItemOptionpreserveInteractivity
propertyLinkedPageItemOptionpreserveOthers
propertyLinkedPageItemOptionpreserveSizeAndShape
propertyLinkedPageItemOptionproperties
propertyLinkedPageItemOptionupdateLinkWhileSaving
propertyLinkedPageItemOptionwarnOnUpdateOfEditedPageItem
propertyLinkedStoryOptionapplyStyleMappings
propertyListBoxAFTER_PLACE
propertyListBoxBEFORE_PLACE
propertyListBoxabsoluteFlip
propertyListBoxabsoluteHorizontalScale
propertyListBoxabsoluteRotationAngle
propertyListBoxabsoluteShearAngle
propertyListBoxabsoluteVerticalScale
propertyListBoxactiveStateIndex
propertyListBoxallArticles
propertyListBoxallGraphics
propertyListBoxallPageItems
propertyListBoxallowOverrides
propertyListBoxanchoredObjectSettings
propertyListBoxanimationSettings
propertyListBoxappliedObjectStyle
propertyListBoxassociatedXMLElement
propertyListBoxbehaviors
propertyListBoxbottomLeftCornerOption
propertyListBoxbottomLeftCornerRadius
propertyListBoxbottomRightCornerOption
propertyListBoxbottomRightCornerRadius
propertyListBoxchoiceList
propertyListBoxclearFormBehaviors
propertyListBoxcontentTransparencySettings
propertyListBoxdescription
propertyListBoxendCap
propertyListBoxendJoin
propertyListBoxepss
propertyListBoxepstexts
propertyListBoxeventListeners
propertyListBoxevents
propertyListBoxfillColor
propertyListBoxfillTint
propertyListBoxfillTransparencySettings
propertyListBoxflip
propertyListBoxfontSize
propertyListBoxgapColor
propertyListBoxgapTint
propertyListBoxgeometricBounds
propertyListBoxgotoAnchorBehaviors
propertyListBoxgotoFirstPageBehaviors
propertyListBoxgotoLastPageBehaviors
propertyListBoxgotoNextPageBehaviors
propertyListBoxgotoNextViewBehaviors
propertyListBoxgotoPreviousPageBehaviors
propertyListBoxgotoPreviousViewBehaviors
propertyListBoxgotoURLBehaviors
propertyListBoxgradientFillAngle
propertyListBoxgradientFillLength
propertyListBoxgradientFillStart
propertyListBoxgradientStrokeAngle
propertyListBoxgradientStrokeLength
propertyListBoxgradientStrokeStart
propertyListBoxgraphicLines
propertyListBoxgraphics
propertyListBoxgroups
propertyListBoxhiddenUntilTriggered
propertyListBoxhorizontalLayoutConstraints
propertyListBoxhorizontalScale
propertyListBoxid
propertyListBoximages
propertyListBoxindex
propertyListBoxisValid
propertyListBoxitemLayer
propertyListBoxlabel
propertyListBoxleftLineEnd
propertyListBoxlinkedPageItemOptions
propertyListBoxlocalDisplaySetting
propertyListBoxlocked
propertyListBoxmiterLimit
propertyListBoxmovieBehaviors
propertyListBoxmultipleSelection
propertyListBoxname
propertyListBoxnonprinting
propertyListBoxopenFileBehaviors
propertyListBoxovals
propertyListBoxoverprintFill
propertyListBoxoverprintGap
propertyListBoxoverprintStroke
propertyListBoxoverridden
propertyListBoxoverriddenMasterPageItem
propertyListBoxpageItems
propertyListBoxparent
propertyListBoxparentPage
propertyListBoxpdfs
propertyListBoxpicts
propertyListBoxpolygons
propertyListBoxpreferences
propertyListBoxprintFormBehaviors
propertyListBoxprintableInPdf
propertyListBoxproperties
propertyListBoxreadOnly
propertyListBoxrectangles
propertyListBoxrequired
propertyListBoxrightLineEnd
propertyListBoxrightToLeftField
propertyListBoxrotationAngle
propertyListBoxshearAngle
propertyListBoxshowHideFieldsBehaviors
propertyListBoxsortChoices
propertyListBoxsoundBehaviors
propertyListBoxsplineItems
propertyListBoxstrokeAlignment
propertyListBoxstrokeColor
propertyListBoxstrokeCornerAdjustment
propertyListBoxstrokeDashAndGap
propertyListBoxstrokeTint
propertyListBoxstrokeTransparencySettings
propertyListBoxstrokeType
propertyListBoxstrokeWeight
propertyListBoxsubmitFormBehaviors
propertyListBoxtextFrames
propertyListBoxtextWrapPreferences
propertyListBoxtimingSettings
propertyListBoxtopLeftCornerOption
propertyListBoxtopLeftCornerRadius
propertyListBoxtopRightCornerOption
propertyListBoxtopRightCornerRadius
propertyListBoxtransparencySettings
propertyListBoxverticalLayoutConstraints
propertyListBoxverticalScale
propertyListBoxviewZoomBehaviors
propertyListBoxvisible
propertyListBoxvisibleBounds
propertyListBoxwmfs
propertyListBoxeslength
propertyMasterSpreadcheckBoxes
propertyMasterSpreadcomboBoxes
propertyMasterSpreadlistBoxes
propertyMasterSpreadprimaryTextFrame
propertyMasterSpreadradioButtons
propertyMasterSpreadsignatureFields
propertyMasterSpreadtextBoxes
propertyMediaItemhorizontalLayoutConstraints
propertyMediaItemlinkedPageItemOptions
propertyMediaItemverticalLayoutConstraints
propertyMoviehorizontalLayoutConstraints
propertyMovielinkedPageItemOptions
propertyMovieverticalLayoutConstraints
propertyMultiStateObjecthorizontalLayoutConstraints
propertyMultiStateObjectlinkedPageItemOptions
propertyMultiStateObjectverticalLayoutConstraints
propertyObjectExportOptioncustomLayout
propertyObjectExportOptioncustomLayoutType
propertyObjectStyleenableTextFrameAutoSizingOptions
propertyOvalcheckBoxes
propertyOvalcomboBoxes
propertyOvalhorizontalLayoutConstraints
propertyOvalhtmlItems
propertyOvallinkedPageItemOptions
propertyOvallistBoxes
propertyOvalradioButtons
propertyOvalsignatureFields
propertyOvaltextBoxes
propertyOvalverticalLayoutConstraints
propertyPDFhorizontalLayoutConstraints
propertyPDFlinkedPageItemOptions
propertyPDFverticalLayoutConstraints
propertyPICThorizontalLayoutConstraints
propertyPICTlinkedPageItemOptions
propertyPICTverticalLayoutConstraints
propertyPNGExportPreferenceantiAlias
propertyPNGExportPreferenceeventListeners
propertyPNGExportPreferenceevents
propertyPNGExportPreferenceexportResolution
propertyPNGExportPreferenceexportingSpread
propertyPNGExportPreferenceisValid
propertyPNGExportPreferencepageString
propertyPNGExportPreferenceparent
propertyPNGExportPreferencepngColorSpace
propertyPNGExportPreferencepngExportRange
propertyPNGExportPreferencepngQuality
propertyPNGExportPreferenceproperties
propertyPNGExportPreferencesimulateOverprint
propertyPNGExportPreferencetransparentBackground
propertyPNGExportPreferenceuseDocumentBleeds
propertyPageappliedAlternateLayout
propertyPagecheckBoxes
propertyPagecomboBoxes
propertyPagelayoutRule
propertyPagelistBoxes
propertyPageoptionalPage
propertyPageradioButtons
propertyPagesignatureFields
propertyPagesnapshotBlendingMode
propertyPagetextBoxes
propertyPageItemhorizontalLayoutConstraints
propertyPageItemlinkedPageItemOptions
propertyPageItemverticalLayoutConstraints
propertyParaStyleMappingdestinationStyleName
propertyParaStyleMappingeventListeners
propertyParaStyleMappingevents
propertyParaStyleMappingindex
propertyParaStyleMappingisValid
propertyParaStyleMappingmappingRuleType
propertyParaStyleMappingparent
propertyParaStyleMappingproperties
propertyParaStyleMappingsourceStyleName
propertyParaStyleMappingslength
propertyParagraphcheckBoxes
propertyParagraphcomboBoxes
propertyParagraphlistBoxes
propertyParagraphparagraphKashidaWidth
propertyParagraphradioButtons
propertyParagraphsignatureFields
propertyParagraphtextBoxes
propertyParagraphStyleparagraphKashidaWidth
propertyPlaceGuncheckBoxes
propertyPlaceGuncomboBoxes
propertyPlaceGunlistBoxes
propertyPlaceGunradioButtons
propertyPlaceGunsignatureFields
propertyPlaceGuntextBoxes
propertyPolygoncheckBoxes
propertyPolygoncomboBoxes
propertyPolygonhorizontalLayoutConstraints
propertyPolygonhtmlItems
propertyPolygonlinkedPageItemOptions
propertyPolygonlistBoxes
propertyPolygonradioButtons
propertyPolygonsignatureFields
propertyPolygontextBoxes
propertyPolygonverticalLayoutConstraints
propertyPrintFormBehaviorbehaviorEvent
propertyPrintFormBehaviorenableBehavior
propertyPrintFormBehavioreventListeners
propertyPrintFormBehaviorevents
propertyPrintFormBehaviorid
propertyPrintFormBehaviorindex
propertyPrintFormBehaviorisValid
propertyPrintFormBehaviorlabel
propertyPrintFormBehaviorname
propertyPrintFormBehaviorparent
propertyPrintFormBehaviorproperties
propertyPrintFormBehaviorslength
propertyRadioButtonAFTER_PLACE
propertyRadioButtonBEFORE_PLACE
propertyRadioButtonabsoluteFlip
propertyRadioButtonabsoluteHorizontalScale
propertyRadioButtonabsoluteRotationAngle
propertyRadioButtonabsoluteShearAngle
propertyRadioButtonabsoluteVerticalScale
propertyRadioButtonactiveStateIndex
propertyRadioButtonallArticles
propertyRadioButtonallGraphics
propertyRadioButtonallPageItems
propertyRadioButtonallowOverrides
propertyRadioButtonanchoredObjectSettings
propertyRadioButtonanimationSettings
propertyRadioButtonappliedObjectStyle
propertyRadioButtonassociatedXMLElement
propertyRadioButtonbehaviors
propertyRadioButtonbottomLeftCornerOption
propertyRadioButtonbottomLeftCornerRadius
propertyRadioButtonbottomRightCornerOption
propertyRadioButtonbottomRightCornerRadius
propertyRadioButtoncheckedByDefault
propertyRadioButtonclearFormBehaviors
propertyRadioButtoncontentTransparencySettings
propertyRadioButtondescription
propertyRadioButtonendCap
propertyRadioButtonendJoin
propertyRadioButtonepss
propertyRadioButtonepstexts
propertyRadioButtoneventListeners
propertyRadioButtonevents
propertyRadioButtonexportValue
propertyRadioButtonfillColor
propertyRadioButtonfillTint
propertyRadioButtonfillTransparencySettings
propertyRadioButtonflip
propertyRadioButtongapColor
propertyRadioButtongapTint
propertyRadioButtongeometricBounds
propertyRadioButtongotoAnchorBehaviors
propertyRadioButtongotoFirstPageBehaviors
propertyRadioButtongotoLastPageBehaviors
propertyRadioButtongotoNextPageBehaviors
propertyRadioButtongotoNextViewBehaviors
propertyRadioButtongotoPreviousPageBehaviors
propertyRadioButtongotoPreviousViewBehaviors
propertyRadioButtongotoURLBehaviors
propertyRadioButtongradientFillAngle
propertyRadioButtongradientFillLength
propertyRadioButtongradientFillStart
propertyRadioButtongradientStrokeAngle
propertyRadioButtongradientStrokeLength
propertyRadioButtongradientStrokeStart
propertyRadioButtongraphicLines
propertyRadioButtongraphics
propertyRadioButtongroups
propertyRadioButtonhiddenUntilTriggered
propertyRadioButtonhorizontalLayoutConstraints
propertyRadioButtonhorizontalScale
propertyRadioButtonid
propertyRadioButtonimages
propertyRadioButtonindex
propertyRadioButtonisValid
propertyRadioButtonitemLayer
propertyRadioButtonlabel
propertyRadioButtonleftLineEnd
propertyRadioButtonlinkedPageItemOptions
propertyRadioButtonlocalDisplaySetting
propertyRadioButtonlocked
propertyRadioButtonmiterLimit
propertyRadioButtonmovieBehaviors
propertyRadioButtonname
propertyRadioButtonnonprinting
propertyRadioButtonopenFileBehaviors
propertyRadioButtonovals
propertyRadioButtonoverprintFill
propertyRadioButtonoverprintGap
propertyRadioButtonoverprintStroke
propertyRadioButtonoverridden
propertyRadioButtonoverriddenMasterPageItem
propertyRadioButtonpageItems
propertyRadioButtonparent
propertyRadioButtonparentPage
propertyRadioButtonpdfs
propertyRadioButtonpicts
propertyRadioButtonpolygons
propertyRadioButtonpreferences
propertyRadioButtonprintFormBehaviors
propertyRadioButtonprintableInPdf
propertyRadioButtonproperties
propertyRadioButtonreadOnly
propertyRadioButtonrectangles
propertyRadioButtonrequired
propertyRadioButtonrightLineEnd
propertyRadioButtonrotationAngle
propertyRadioButtonshearAngle
propertyRadioButtonshowHideFieldsBehaviors
propertyRadioButtonsoundBehaviors
propertyRadioButtonsplineItems
propertyRadioButtonstates
propertyRadioButtonstrokeAlignment
propertyRadioButtonstrokeColor
propertyRadioButtonstrokeCornerAdjustment
propertyRadioButtonstrokeDashAndGap
propertyRadioButtonstrokeTint
propertyRadioButtonstrokeTransparencySettings
propertyRadioButtonstrokeType
propertyRadioButtonstrokeWeight
propertyRadioButtonsubmitFormBehaviors
propertyRadioButtontextFrames
propertyRadioButtontextWrapPreferences
propertyRadioButtontimingSettings
propertyRadioButtontopLeftCornerOption
propertyRadioButtontopLeftCornerRadius
propertyRadioButtontopRightCornerOption
propertyRadioButtontopRightCornerRadius
propertyRadioButtontransparencySettings
propertyRadioButtonverticalLayoutConstraints
propertyRadioButtonverticalScale
propertyRadioButtonviewZoomBehaviors
propertyRadioButtonvisible
propertyRadioButtonvisibleBounds
propertyRadioButtonwmfs
propertyRadioButtonslength
propertyRectanglecheckBoxes
propertyRectanglecomboBoxes
propertyRectanglehorizontalLayoutConstraints
propertyRectanglehtmlItems
propertyRectanglelinkedPageItemOptions
propertyRectanglelistBoxes
propertyRectangleradioButtons
propertyRectanglesignatureFields
propertyRectangletextBoxes
propertyRectangleverticalLayoutConstraints
propertySectionalternateLayout
propertySectionalternateLayoutLength
propertySectionpagination
propertySectionpaginationMaster
propertySignatureFieldAFTER_PLACE
propertySignatureFieldBEFORE_PLACE
propertySignatureFieldabsoluteFlip
propertySignatureFieldabsoluteHorizontalScale
propertySignatureFieldabsoluteRotationAngle
propertySignatureFieldabsoluteShearAngle
propertySignatureFieldabsoluteVerticalScale
propertySignatureFieldactiveStateIndex
propertySignatureFieldallArticles
propertySignatureFieldallGraphics
propertySignatureFieldallPageItems
propertySignatureFieldallowOverrides
propertySignatureFieldanchoredObjectSettings
propertySignatureFieldanimationSettings
propertySignatureFieldappliedObjectStyle
propertySignatureFieldassociatedXMLElement
propertySignatureFieldbehaviors
propertySignatureFieldbottomLeftCornerOption
propertySignatureFieldbottomLeftCornerRadius
propertySignatureFieldbottomRightCornerOption
propertySignatureFieldbottomRightCornerRadius
propertySignatureFieldclearFormBehaviors
propertySignatureFieldcontentTransparencySettings
propertySignatureFielddescription
propertySignatureFieldendCap
propertySignatureFieldendJoin
propertySignatureFieldepss
propertySignatureFieldepstexts
propertySignatureFieldeventListeners
propertySignatureFieldevents
propertySignatureFieldfillColor
propertySignatureFieldfillTint
propertySignatureFieldfillTransparencySettings
propertySignatureFieldflip
propertySignatureFieldgapColor
propertySignatureFieldgapTint
propertySignatureFieldgeometricBounds
propertySignatureFieldgotoAnchorBehaviors
propertySignatureFieldgotoFirstPageBehaviors
propertySignatureFieldgotoLastPageBehaviors
propertySignatureFieldgotoNextPageBehaviors
propertySignatureFieldgotoNextViewBehaviors
propertySignatureFieldgotoPreviousPageBehaviors
propertySignatureFieldgotoPreviousViewBehaviors
propertySignatureFieldgotoURLBehaviors
propertySignatureFieldgradientFillAngle
propertySignatureFieldgradientFillLength
propertySignatureFieldgradientFillStart
propertySignatureFieldgradientStrokeAngle
propertySignatureFieldgradientStrokeLength
propertySignatureFieldgradientStrokeStart
propertySignatureFieldgraphicLines
propertySignatureFieldgraphics
propertySignatureFieldgroups
propertySignatureFieldhiddenUntilTriggered
propertySignatureFieldhorizontalLayoutConstraints
propertySignatureFieldhorizontalScale
propertySignatureFieldid
propertySignatureFieldimages
propertySignatureFieldindex
propertySignatureFieldisValid
propertySignatureFielditemLayer
propertySignatureFieldlabel
propertySignatureFieldleftLineEnd
propertySignatureFieldlinkedPageItemOptions
propertySignatureFieldlocalDisplaySetting
propertySignatureFieldlocked
propertySignatureFieldmiterLimit
propertySignatureFieldmovieBehaviors
propertySignatureFieldname
propertySignatureFieldnonprinting
propertySignatureFieldopenFileBehaviors
propertySignatureFieldovals
propertySignatureFieldoverprintFill
propertySignatureFieldoverprintGap
propertySignatureFieldoverprintStroke
propertySignatureFieldoverridden
propertySignatureFieldoverriddenMasterPageItem
propertySignatureFieldpageItems
propertySignatureFieldparent
propertySignatureFieldparentPage
propertySignatureFieldpdfs
propertySignatureFieldpicts
propertySignatureFieldpolygons
propertySignatureFieldpreferences
propertySignatureFieldprintFormBehaviors
propertySignatureFieldprintableInPdf
propertySignatureFieldproperties
propertySignatureFieldreadOnly
propertySignatureFieldrectangles
propertySignatureFieldrequired
propertySignatureFieldrightLineEnd
propertySignatureFieldrotationAngle
propertySignatureFieldshearAngle
propertySignatureFieldshowHideFieldsBehaviors
propertySignatureFieldsoundBehaviors
propertySignatureFieldsplineItems
propertySignatureFieldstrokeAlignment
propertySignatureFieldstrokeColor
propertySignatureFieldstrokeCornerAdjustment
propertySignatureFieldstrokeDashAndGap
propertySignatureFieldstrokeTint
propertySignatureFieldstrokeTransparencySettings
propertySignatureFieldstrokeType
propertySignatureFieldstrokeWeight
propertySignatureFieldsubmitFormBehaviors
propertySignatureFieldtextFrames
propertySignatureFieldtextWrapPreferences
propertySignatureFieldtimingSettings
propertySignatureFieldtopLeftCornerOption
propertySignatureFieldtopLeftCornerRadius
propertySignatureFieldtopRightCornerOption
propertySignatureFieldtopRightCornerRadius
propertySignatureFieldtransparencySettings
propertySignatureFieldverticalLayoutConstraints
propertySignatureFieldverticalScale
propertySignatureFieldviewZoomBehaviors
propertySignatureFieldvisible
propertySignatureFieldvisibleBounds
propertySignatureFieldwmfs
propertySignatureFieldslength
propertySnippetcheckBoxes
propertySnippetcomboBoxes
propertySnippetlistBoxes
propertySnippetradioButtons
propertySnippetsignatureFields
propertySnippettextBoxes
propertySoundhorizontalLayoutConstraints
propertySoundlinkedPageItemOptions
propertySoundverticalLayoutConstraints
propertySplineItemcheckBoxes
propertySplineItemcomboBoxes
propertySplineItemhorizontalLayoutConstraints
propertySplineItemhtmlItems
propertySplineItemlinkedPageItemOptions
propertySplineItemlistBoxes
propertySplineItemradioButtons
propertySplineItemsignatureFields
propertySplineItemtextBoxes
propertySplineItemverticalLayoutConstraints
propertySpreadcheckBoxes
propertySpreadcomboBoxes
propertySpreadlistBoxes
propertySpreadradioButtons
propertySpreadsignatureFields
propertySpreadtextBoxes
propertyStaticTextstaticAlignment
propertyStorycellStyleMappings
propertyStorycharStyleMappings
propertyStorycheckBoxes
propertyStorycomboBoxes
propertyStorylistBoxes
propertyStoryparaStyleMappings
propertyStoryparagraphKashidaWidth
propertyStoryradioButtons
propertyStorysignatureFields
propertyStorytableStyleMappings
propertyStorytextBoxes
propertyStoryWindowselectionKeyObject
propertyStyleExportTagMapsplitDocument
propertySubmitFormBehaviorbehaviorEvent
propertySubmitFormBehaviorenableBehavior
propertySubmitFormBehavioreventListeners
propertySubmitFormBehaviorevents
propertySubmitFormBehaviorid
propertySubmitFormBehaviorindex
propertySubmitFormBehaviorisValid
propertySubmitFormBehaviorlabel
propertySubmitFormBehaviorname
propertySubmitFormBehaviorparent
propertySubmitFormBehaviorproperties
propertySubmitFormBehaviorurl
propertySubmitFormBehaviorslength
propertyTablecheckBoxes
propertyTablecomboBoxes
propertyTablelistBoxes
propertyTableradioButtons
propertyTablesignatureFields
propertyTabletextBoxes
propertyTableStyleMappingdestinationStyleName
propertyTableStyleMappingeventListeners
propertyTableStyleMappingevents
propertyTableStyleMappingindex
propertyTableStyleMappingisValid
propertyTableStyleMappingmappingRuleType
propertyTableStyleMappingparent
propertyTableStyleMappingproperties
propertyTableStyleMappingsourceStyleName
propertyTableStyleMappingslength
propertyTextcheckBoxes
propertyTextcomboBoxes
propertyTextlistBoxes
propertyTextparagraphKashidaWidth
propertyTextradioButtons
propertyTextsignatureFields
propertyTexttextBoxes
propertyTextBoxAFTER_PLACE
propertyTextBoxBEFORE_PLACE
propertyTextBoxabsoluteFlip
propertyTextBoxabsoluteHorizontalScale
propertyTextBoxabsoluteRotationAngle
propertyTextBoxabsoluteShearAngle
propertyTextBoxabsoluteVerticalScale
propertyTextBoxactiveStateIndex
propertyTextBoxallArticles
propertyTextBoxallGraphics
propertyTextBoxallPageItems
propertyTextBoxallowOverrides
propertyTextBoxanchoredObjectSettings
propertyTextBoxanimationSettings
propertyTextBoxappliedObjectStyle
propertyTextBoxassociatedXMLElement
propertyTextBoxbehaviors
propertyTextBoxbottomLeftCornerOption
propertyTextBoxbottomLeftCornerRadius
propertyTextBoxbottomRightCornerOption
propertyTextBoxbottomRightCornerRadius
propertyTextBoxclearFormBehaviors
propertyTextBoxcontentTransparencySettings
propertyTextBoxdescription
propertyTextBoxendCap
propertyTextBoxendJoin
propertyTextBoxepss
propertyTextBoxepstexts
propertyTextBoxeventListeners
propertyTextBoxevents
propertyTextBoxfillColor
propertyTextBoxfillTint
propertyTextBoxfillTransparencySettings
propertyTextBoxflip
propertyTextBoxfontSize
propertyTextBoxgapColor
propertyTextBoxgapTint
propertyTextBoxgeometricBounds
propertyTextBoxgotoAnchorBehaviors
propertyTextBoxgotoFirstPageBehaviors
propertyTextBoxgotoLastPageBehaviors
propertyTextBoxgotoNextPageBehaviors
propertyTextBoxgotoNextViewBehaviors
propertyTextBoxgotoPreviousPageBehaviors
propertyTextBoxgotoPreviousViewBehaviors
propertyTextBoxgotoURLBehaviors
propertyTextBoxgradientFillAngle
propertyTextBoxgradientFillLength
propertyTextBoxgradientFillStart
propertyTextBoxgradientStrokeAngle
propertyTextBoxgradientStrokeLength
propertyTextBoxgradientStrokeStart
propertyTextBoxgraphicLines
propertyTextBoxgraphics
propertyTextBoxgroups
propertyTextBoxhiddenUntilTriggered
propertyTextBoxhorizontalLayoutConstraints
propertyTextBoxhorizontalScale
propertyTextBoxid
propertyTextBoximages
propertyTextBoxindex
propertyTextBoxisValid
propertyTextBoxitemLayer
propertyTextBoxlabel
propertyTextBoxleftLineEnd
propertyTextBoxlinkedPageItemOptions
propertyTextBoxlocalDisplaySetting
propertyTextBoxlocked
propertyTextBoxmiterLimit
propertyTextBoxmovieBehaviors
propertyTextBoxmultiline
propertyTextBoxname
propertyTextBoxnonprinting
propertyTextBoxopenFileBehaviors
propertyTextBoxovals
propertyTextBoxoverprintFill
propertyTextBoxoverprintGap
propertyTextBoxoverprintStroke
propertyTextBoxoverridden
propertyTextBoxoverriddenMasterPageItem
propertyTextBoxpageItems
propertyTextBoxparent
propertyTextBoxparentPage
propertyTextBoxpassword
propertyTextBoxpdfs
propertyTextBoxpicts
propertyTextBoxpolygons
propertyTextBoxpreferences
propertyTextBoxprintFormBehaviors
propertyTextBoxprintableInPdf
propertyTextBoxproperties
propertyTextBoxreadOnly
propertyTextBoxrectangles
propertyTextBoxrequired
propertyTextBoxrightLineEnd
propertyTextBoxrightToLeftField
propertyTextBoxrotationAngle
propertyTextBoxscrollable
propertyTextBoxshearAngle
propertyTextBoxshowHideFieldsBehaviors
propertyTextBoxsoundBehaviors
propertyTextBoxsplineItems
propertyTextBoxstrokeAlignment
propertyTextBoxstrokeColor
propertyTextBoxstrokeCornerAdjustment
propertyTextBoxstrokeDashAndGap
propertyTextBoxstrokeTint
propertyTextBoxstrokeTransparencySettings
propertyTextBoxstrokeType
propertyTextBoxstrokeWeight
propertyTextBoxsubmitFormBehaviors
propertyTextBoxtextFrames
propertyTextBoxtextWrapPreferences
propertyTextBoxtimingSettings
propertyTextBoxtopLeftCornerOption
propertyTextBoxtopLeftCornerRadius
propertyTextBoxtopRightCornerOption
propertyTextBoxtopRightCornerRadius
propertyTextBoxtransparencySettings
propertyTextBoxverticalLayoutConstraints
propertyTextBoxverticalScale
propertyTextBoxviewZoomBehaviors
propertyTextBoxvisible
propertyTextBoxvisibleBounds
propertyTextBoxwmfs
propertyTextBoxeslength
propertyTextColumncheckBoxes
propertyTextColumncomboBoxes
propertyTextColumnlistBoxes
propertyTextColumnparagraphKashidaWidth
propertyTextColumnradioButtons
propertyTextColumnsignatureFields
propertyTextColumntextBoxes
propertyTextDefaultparagraphKashidaWidth
propertyTextFramecheckBoxes
propertyTextFramecomboBoxes
propertyTextFramehorizontalLayoutConstraints
propertyTextFramelinkedPageItemOptions
propertyTextFramelistBoxes
propertyTextFrameobjectExportOptions
propertyTextFrameradioButtons
propertyTextFramesignatureFields
propertyTextFrametextBoxes
propertyTextFrameverticalLayoutConstraints
propertyTextFramePreferenceautoSizingReferencePoint
propertyTextFramePreferenceautoSizingType
propertyTextFramePreferenceminimumHeightForAutoSizing
propertyTextFramePreferenceminimumWidthForAutoSizing
propertyTextFramePreferencetextColumnMaxWidth
propertyTextFramePreferenceuseFlexibleColumnWidth
propertyTextFramePreferenceuseMinimumHeightForAutoSizing
propertyTextFramePreferenceuseMinimumWidthForAutoSizing
propertyTextFramePreferenceuseNoLineBreaksForAutoSizing
propertyTextPreferencequoteCharactersRotatedInVertical
propertyTextStyleRangecheckBoxes
propertyTextStyleRangecomboBoxes
propertyTextStyleRangelistBoxes
propertyTextStyleRangeparagraphKashidaWidth
propertyTextStyleRangeradioButtons
propertyTextStyleRangesignatureFields
propertyTextStyleRangetextBoxes
propertyWMFhorizontalLayoutConstraints
propertyWMFlinkedPageItemOptions
propertyWMFverticalLayoutConstraints
propertyWindowselectionKeyObject
propertyWordcheckBoxes
propertyWordcomboBoxes
propertyWordlistBoxes
propertyWordparagraphKashidaWidth
propertyWordradioButtons
propertyWordsignatureFields
propertyWordtextBoxes
propertyXmlStorycellStyleMappings
propertyXmlStorycharStyleMappings
propertyXmlStorycheckBoxes
propertyXmlStorycomboBoxes
propertyXmlStorylistBoxes
propertyXmlStoryparaStyleMappings
propertyXmlStoryparagraphKashidaWidth
propertyXmlStoryradioButtons
propertyXmlStorysignatureFields
propertyXmlStorytableStyleMappings
propertyXmlStorytextBoxes
property(enum)AlignDistributeBoundsKEY_OBJECT
property(enum)AutoSizingReferenceEnumBOTTOM_CENTER_POINT
property(enum)AutoSizingReferenceEnumBOTTOM_LEFT_POINT
property(enum)AutoSizingReferenceEnumBOTTOM_RIGHT_POINT
property(enum)AutoSizingReferenceEnumCENTER_POINT
property(enum)AutoSizingReferenceEnumLEFT_CENTER_POINT
property(enum)AutoSizingReferenceEnumRIGHT_CENTER_POINT
property(enum)AutoSizingReferenceEnumTOP_CENTER_POINT
property(enum)AutoSizingReferenceEnumTOP_LEFT_POINT
property(enum)AutoSizingReferenceEnumTOP_RIGHT_POINT
property(enum)AutoSizingTypeEnumHEIGHT_AND_WIDTH
property(enum)AutoSizingTypeEnumHEIGHT_AND_WIDTH_PROPORTIONALLY
property(enum)AutoSizingTypeEnumHEIGHT_ONLY
property(enum)AutoSizingTypeEnumOFF
property(enum)AutoSizingTypeEnumWIDTH_ONLY
property(enum)CoordinateSpacesPAGE_COORDINATES
property(enum)CustomLayoutTypeEnumALIGNMENT_AND_SPACING
property(enum)CustomLayoutTypeEnumFLOAT_LEFT
property(enum)CustomLayoutTypeEnumFLOAT_RIGHT
property(enum)DiacriticPositionOptionsOPENTYPE_POSITION_FROM_BASELINE
property(enum)DimensionsConstraintsFIXED_DIMENSION
property(enum)DimensionsConstraintsFLEXIBLE_DIMENSION
property(enum)DocumentIntentOptionsDPS_INTENT
property(enum)EpubVersionEPUB2
property(enum)EpubVersionEPUB3
property(enum)EpubVersionEPUB3_WITH_LAYOUT
property(enum)FindChangeTransliterateCharacterTypesARABIC_INDIC_DIGITS
property(enum)FindChangeTransliterateCharacterTypesFARSI_DIGITS
property(enum)FindChangeTransliterateCharacterTypesWESTERN_ARABIC_DIGITS
property(enum)GuideTypeOptionsLIQUID
property(enum)GuideTypeOptionsRULER
property(enum)LanguageAndRegionINDIC
property(enum)LayoutRuleOptionsGUIDE_BASED
property(enum)LayoutRuleOptionsOBJECT_BASED
property(enum)LayoutRuleOptionsOFF
property(enum)LayoutRuleOptionsPRESERVE_EXISTING
property(enum)LayoutRuleOptionsRECENTER
property(enum)LayoutRuleOptionsSCALE
property(enum)LayoutRuleOptionsUSE_MASTER
property(enum)MapTypeGROUP_MAPPING_RULE
property(enum)MapTypeGROUP_TO_STYLE_MAPPING_RULE
property(enum)MapTypeSTYLE_MAPPING_RULE
property(enum)MapTypeSTYLE_TO_GROUP_MAPPING_RULE
property(enum)PDFColorSpaceGRAY
property(enum)PNGColorSpaceEnumGRAY
property(enum)PNGColorSpaceEnumRGB
property(enum)PNGExportRangeEnumEXPORT_ALL
property(enum)PNGExportRangeEnumEXPORT_RANGE
property(enum)PNGQualityEnumHIGH
property(enum)PNGQualityEnumLOW
property(enum)PNGQualityEnumMAXIMUM
property(enum)PNGQualityEnumMEDIUM
property(enum)PageViewOptionsBY_ALTERNATE_LAYOUT
property(enum)PageViewOptionsHORIZONTALLY
property(enum)PageViewOptionsVERTICALLY
property(enum)PaginationOptionAUTO_PAGINATE
property(enum)PaginationOptionFROM_LAST_PAGE
property(enum)ParagraphJustificationOptionsNASKH_KASHIDA_JUSTIFICATION
property(enum)ParagraphJustificationOptionsNASKH_KASHIDA_JUSTIFICATION_FRAC
property(enum)ParagraphJustificationOptionsNASKH_TATWEEL_JUSTIFICATION
property(enum)ParagraphJustificationOptionsNASKH_TATWEEL_JUSTIFICATION_FRAC
property(enum)PreviewPagesOptionsALL_PAGES
property(enum)PreviewPagesOptionsFIRST_10_PAGES
property(enum)PreviewPagesOptionsFIRST_2_PAGES
property(enum)PreviewPagesOptionsFIRST_5_PAGES
property(enum)PreviewPagesOptionsFIRST_PAGE
property(enum)SelectionOptionsSET_KEY
property(enum)SnapshotBlendingModesFULL_SNAPSHOT_BLENDING
property(enum)SnapshotBlendingModesIGNORE_LAYOUT_SNAPSHOTS
property(enum)SnapshotBlendingModesLIMITED_SNAPSHOT_BLENDING
property(enum)SnapshotBlendingModesUSE_NEAREST_SNAPSHOT
property(enum)StateTypesDOWN_OFF
property(enum)StateTypesDOWN_ON
property(enum)StateTypesROLLOVER_OFF
property(enum)StateTypesROLLOVER_ON
property(enum)StateTypesUP_OFF
property(enum)StateTypesUP_ON
property(enum)StaticAlignmentOptionsCENTER_ALIGN
property(enum)StaticAlignmentOptionsLEFT_ALIGN
property(enum)StaticAlignmentOptionsRIGHT_ALIGN
property(enum)TagTextExportCharacterSetCENTRALEUROPEAN_ISO
property(enum)TagTextExportCharacterSetCYRILLIC_ISO
property(enum)TagTextExportCharacterSetGREEK_ISO
property(enum)TagTextExportCharacterSetWINDOWS_ARABIC
property(enum)TagTextExportCharacterSetWINDOWS_HEBREW
property(enum)TextFrameContentsPLACEHOLDER_TEXT_ARABIC
property(enum)TextFrameContentsPLACEHOLDER_TEXT_CYRILLIC
property(enum)TextFrameContentsPLACEHOLDER_TEXT_GREEK
property(enum)TextFrameContentsPLACEHOLDER_TEXT_HEBREW
property(enum)TextImportCharacterSetARABIC_ASMO
property(enum)TextImportCharacterSetARABIC_ASMO_TRANSPARENT
property(enum)TextImportCharacterSetMACINTOSH_ARABIC
property(enum)TextImportCharacterSetMACINTOSH_GREEK_SHARED_CAPS
property(enum)TextImportCharacterSetMACINTOSH_HEBREW
property(enum)TextImportCharacterSetWINDOWS_ARABIC
property(enum)TextImportCharacterSetWINDOWS_HEBREW

Everybody happy?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 27, 2012 Apr 27, 2012

@Jongware & John – Great ! Great ! Great !!


Thank you very much!

Uwe

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

Thanks very much!

Peter

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

Some odd choices here ...

For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 28, 2012 Apr 28, 2012

For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?

Whoops. The position of the UI control for this changed, and I figured it just moved around in the scripting DOM, but that doesn't appear to be the case. Sounds like an oversight. Bug #3177903: PagesPanel.verticalView property disappeared (CS6 regression). If you find any others, it would be good to find them prior to Monday.

On the bright side, you can just set app.scriptPreferences.version=7.5 and it still works.

Any others?

*Kicks self* for not running this report earlier and not really paying attention...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 03, 2012 May 03, 2012
LATEST

Whoops. The position of the UI control for this changed, and I figured it just moved around in the scripting DOM, but that doesn't appear to be the case. Sounds like an oversight. Bug #3177903: PagesPanel.verticalView property disappeared (CS6 regression). If you find any others, it would be good to find them prior to Monday.

Well, that was exciting.

Bug was marked Withdrawn/Closed/As Designed on Monday, I guess because QE thought that there was some way to use PageViewOptions.

I lodged an inquiry then and today it was confirmed that it is indeed a bug (after "lengthy investigation") and it's been reopened and moved to CSnext.

Gotta fight for your bugs!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

@Jongware – Could you also do a chm version for InDesign CS5.5?
I know there is the online documentation. I wonder how much trouble it is to transform that into a chm file.
Or are there tools to do it myself?

And another thing with the online documentation of CS5.5:
Did you by any chance have the Adobe Digitial Publishing Suite installed when you created the online version of InDesign CS5.5?

I noticed that there is the "getAllOverlays" method listed for "application":

http://jongware.mit.edu/idcsjs5.5/pc_Application.html#getAllOverlays

That method is missing in the above lists by John. That is no omission since there seems no DPS involved on his side. And in your case, no wonder, it is missing in the CS6 documentation too, since DPS v20 for InDesign CS6 is not available yet and the current v19 does not work with InDesign CS6.

On the other hand the "app.getDigpubVersion()" method is missing in your online documentation of InDesign CS5.5 which, so I believe, belongs totally to DPS and is only available if you have a installed DPS (like me). But maybe this method came with v19 of DPS and you had v17 or v18 installed the day you did the online documentation.

Thank you again for your efforts!

Uwe

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

Laubender wrote:

@Jongware – Could you also do a chm version for InDesign CS5.5?
I know there is the online documentation. I wonder how much trouble it is to transform that into a chm file.
Or are there tools to do it myself?

CS5.5 was a strange omission -- perhaps because it came out at such a strange time! Corrected; I also threw in InCopy and ID Server for completeness' sake.

If you have a set of HTML files you can convert them to a single CHM file with Microsoft's HTML Help Workshop. The version I am using is from 1999, which is ancient in terms of software, but it does a very good job, as an input size of 19MB gets compressed into a mere 3.5MB in minutes.

These help files are 'old format'; there is also a 'new format', but (a) I don't have the tools or any experience with creating it, (b) I'm not too sure if my preferred Mac viewer (Robin Lu's iCHM) can display them, and (c) I'm not too wild about how files are displayed .

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

Updated:

When you see a property such as "Document.articles", sometimes you want to get to the reference to the "Articles" -- plural --, for example when you want to add or list them. But more often, you want to see the properties of an individual article; and to get to those, you have to click "Articles", then browse down the list to a reference to the singular and then click that. So now, when I see a plural reference and there also is a singular class, this is shown besides the plural.

Some numbers for the CS6 version, by the way, to illustrate the depth & width of this help

8,105Topics
117,298Local links
1Internet link
0Graphics
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 29, 2012 Apr 29, 2012

So now, when I see a plural reference and there also is a singular class, this is shown besides the plural.

@Jongware – and you did an update for this in the  CS4 files as well. Cool.

ReferencesToSingular.png

Uwe

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 29, 2012 Apr 29, 2012

> For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?

See here: http://jongware.mit.edu/idcs6js/pe_PageViewOptions.html <g>

The odd choice was to move it in the Panel Options dialog.

Peter

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 29, 2012 Apr 29, 2012

See here: http://jongware.mit.edu/idcs6js/pe_PageViewOptions.html <g>

The odd choice was to move it in the Panel Options dialog.

Yes, but what variable uses this enumerator?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 29, 2012 Apr 29, 2012

Dunno. I've been looking under all kinds of preferences and settings, but haven't found it. To make finding what parent(s) a property or a method belongs to, I was going to ask if it's possible to change the xslt in such a way that the output list includes full path names, so to speak.

Peter

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 29, 2012 Apr 29, 2012

I had found the PageViewOptions enumerator before I concluded that there was no way to do this, but it didn't get me anywhere...but I'd be happy to be shown to be wrong!

To make finding what parent(s) a property or a method belongs to, I was going to ask if it's possible to change the xslt in such a way that the output list includes full path names, so to speak.

Unfortunately that's not how the XML is structured. Take a look at the OMV cache file, it looks like this:

<dictionary engine="">

  <map name="8.0" ...>

    <topicref navtitle="Assignment Suite">

      <topicref navtitle="Assignment" href="#/Assignment"/>

    </topicref>

  </map>

  <package>

    <classdef name="Assignment" dynamic="true">

      <shortdesc>An assignment.</shortdesc>

      <elements type="instance">

        <property name="documentPath" rwaccess="readonly">

          <shortdesc>The path to the document that the hyperlink ...</shortdesc>

          <datatype>

            <type>File</type>

          </datatype>

        </property>

...

        <method name="update">

          <shortdesc>Updates the assignment file.</shortdesc>

          <parameters>

            <parameter name="versionComments">

              <shortdesc>The comment for this version. (Optional)</shortdesc>

              <datatype>

                <type>string</type>

              </datatype>

            </parameter>

            ...

          </parameters>

        </method>

      </elements>

    </classdef>

  </package>

</dictionary>

That is, for each proprerty (including eums), we only know the associated Class. And the Class belongs to a Suite.

Sometimes the descriptions include (unstructured) references to an enumerator, but there are no decriptions that reference this enumerator.

And nothing has a <datatype/> tag that lists this enumerator.

So, it's certainly possible to change the XSLT to look up the Suite of a class in the <map/> section, but I didn't bother because it's a little more code and doesn't get us anything real. The PageViewOptions class belongs to the Enumeration suite, and that's all we can say.

Or did I misunderstand?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 29, 2012 Apr 29, 2012

Ok, thanks, I see now that the xml won't let you get the full path. Thanks.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 29, 2012 Apr 29, 2012

It sounds to me like Adobe intended this enumeration to be used in the PagesPanel ... but they removed the property that it was supposed to be associated with it ...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2012 Apr 28, 2012

.. added CS6 InCopy and CS6 Server as well.

Uwe, I don't do anything 'special' to get or not get special DPS commands included -- I only use what I get to see in the most recent OMV file.

Since DPS is constantly updated (well, probably a good thing) you'll have to check Adobe's OMV for changes in the JS interface, each time you update it. Besides, I'm not a fan user of DPS so I'm not going to jump through hoops everytime ithis happens.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines