String
QuickLinks
Properties
Property | Type | Access | Description |
---|---|---|---|
length | number | readonly | The length of the string. |
Methods
Constructor
String String (value:
any)
Returns a string representation of the value given as an argument.
Parameter | Type | Description |
---|---|---|
value | any | A number, variable, or object to convert to a string. |
Example | new String(value) |
Class
String fromCharCode (value1:
number)
Returns a string created by concatenation one or more characters specified as ASCII values.
Parameter | Type | Description |
---|---|---|
value1 | number | One or more ASCII values. |
Example | String.fromCharCode(value1,...valueN) |
Instances
string anchor (name:
string)
Returns a string consisting of this string enclosed in a <a> tag.
Parameter | Type | Description |
---|---|---|
name | string | The text to be stored in the anchors' name attribute. |
string big ()
Returns a string consisting of this string enclosed in a <big> tag.
string blink ()
Returns a string consisting of this string enclosed in a <blink> tag.
string bold ()
Returns a string consisting of this string enclosed in a <b> tag.
string charAt (index:
number)
Returns the character at the specified index.
Parameter | Type | Description |
---|---|---|
index | number | An integer between 0 and string.length -1, specifying the character to return. |
Example | string.charAt(index) |
number charCodeAt (index:
number)
Returns the Unicode value of the character at the given index.
Parameter | Type | Description |
---|---|---|
index | number | An integer between 0 and string.length -1, specifying the character. |
Example | string.charCodeAt(index) |
string concat (value:
string)
If necessary, converts the one or more given values to strings.
Those values are concatenated with the original string, the result is returned. The original string is not effected. Returns the concatenated string.
Parameter | Type | Description |
---|---|---|
value | string | The values to be concatenated with the given string. |
Example | string.concat(value1,...valueN) |
string fixed ()
Returns a string consisting of this string enclosed in a <tt> tag.
string fontcolor (color:
string)
Returns a string consisting of this string enclosed in a <font> tag.
Parameter | Type | Description |
---|---|---|
color | string | The value to be stored in the tag's color attribute. |
string fontsize (size:
number)
Returns a string consisting of this string enclosed in a <font> tag.
Parameter | Type | Description |
---|---|---|
size | number | The value to be stored in the tag's size attribute. |
number indexOf (searchValue:
string[, offset:
number])
Returns the index within the string of the first occurrence of the specified string, starting the search at fromIndex if provided.
Parameter | Type | Description |
---|---|---|
searchValue | string | The string for which to search. |
offset | number | The starting offset of the search. (Optional) |
Example | string.indexOf(searchValue, fromIndex) |
string italics ()
Returns a string consisting of this string enclosed in a <i> tag.
number lastIndexOf (searchValue:
string[, offset:
number])
Returns the index within the string of the last occurrence of the specified value.
The string is searched backward, starting at fromIndex. Returns the index within the string where the last occurrence of searchValue was found, or -1 if it was not found.
Parameter | Type | Description |
---|---|---|
searchValue | string | The string for which to search. |
offset | number | The starting offset of the search. (Optional) |
Example | string.lastIndexOf(searchValue, fromIndex) |
string link (href:
string)
Returns a string consisting of this string enclosed in a <a> tag.
Parameter | Type | Description |
---|---|---|
href | string | The value to be stored in the tag's href attribute. |
number localeCompare (what:
string)
Performs a localized comparison of two strings.
Parameter | Type | Description |
---|---|---|
what | string | The string to compare with. |
Array match (regexp:
RegExp)
Matches a string against a regular expression.
Parameter | Type | Description |
---|---|---|
regexp | RegExp | The regular expression to use. |
string replace (what: any, with: string)
Parameter | Type | Description |
---|---|---|
what | any | |
with | string |
number search (search: RegExp)
Parameter | Type | Description |
---|---|---|
search | RegExp |
string slice (startSlice:
number[, endSlice:
number])
Extracts a substring of the given string and returns it as a new string.
The substring begins at startSlice, and includes all characters up to, but not including the character at the index endSlice. A negative value indexes from the end of the string. For example, a negative value for startSlice is resolved as: string. length + startSlice. The original string is unchanged. Returns a substring of characters from the given string, starting at startSlice and ending with endSlice-1.
Parameter | Type | Description |
---|---|---|
startSlice | number | The index at which to begin extraction. |
endSlice | number | The index at which to end extraction. If omitted, slice extracts to the end of the string. (Optional) |
Example | string.slice(startSlice, endSlice) |
string small ()
Returns a string consisting of this string enclosed in a <small> tag.
string split (delimiter:
string, limit:
number)
Splits a string into a group of substrings, places those strings in an array, and returns the array.
The substrings are created by breaking the original string at places that match delimiter, the delimiter characters are removed. Returns an array whose elements are the substrings.
Parameter | Type | Description |
---|---|---|
delimiter | string | Specifies the string to use for delimiting. If delimiter is omitted, the array returned contains one element, consisting of the entire string. |
limit | number |
Example | string.split(delimiter) |
string strike ()
Returns a string consisting of this string enclosed in a <strike> tag.
string sub ()
Returns a string consisting of this string enclosed in a <sub> tag.
string substr (start:
number, length:
number)
Returns a string containing the characters beginning at the specified index, start, through the specified number of characters.
The original string is unchanged. Returns a string containing the extracted characters.
Parameter | Type | Description |
---|---|---|
start | number | Location at which to begin extracting characters. |
length | number | (OptIonal) The number of characters to extract. |
Example | string.substr(start, length) |
string substring (indexA:
number[, indexB:
number])
Returns a substring of the given string by extracting characters from indexA up to but not including indexB.
The original string is unchanged. Returns a substring of characters from the given string, starting at indexA and ending with indexB-1.
Parameter | Type | Description |
---|---|---|
indexA | number | The index to begin extracting. |
indexB | number | (Optional) The index at which to end extraction. If omitted, slice extracts to the end of the string. |
Example | string.substring(indexA, indexB) |
string sup ()
Returns a string consisting of this string enclosed in a <sup> tag.
string toLocaleLowerCase ()
Returns a new string which contains all the characters of the original string converted to lowercase (localized).
The original string is unchanged.
string toLocaleUpperCase ()
Returns a new string which contains all the characters of the original string converted to uppercase (localized).
The original string is unchanged.
string toLowerCase ()
Returns a new string which contains all the characters of the original string converted to lowercase.
The original string is unchanged.
Example | string.toLowerCase() |
string toSource ()
Creates a string representation of this object that can be fed back to eval() to re-create an object. Works only with built-in classes.
string toString ()
Returns itself.
string toUpperCase ()
Returns a new string which contains all the characters of the original string converted to uppercase.
The original string is unchanged.
Example | string.toUpperCase() |
string valueOf ()
Returns itself.
Element of
Bullet.bulletsFont
Bullet.bulletsFontStyle
Button.fillColor
Button.strokeColor
Button.strokeType
Button.alignment
Button.helpTip
Button.justify
Button.shortcutKey
Button.text
Button.type
Cell.appliedCellStyle
Cell.bottomEdgeStrokeType
Cell.contents
Cell.diagonalLineStrokeType
Cell.fillColor
Cell.innerColumnStrokeType
Cell.innerRowStrokeType
Cell.leftEdgeStrokeType
Cell.rightEdgeStrokeType
Cell.topEdgeStrokeType
CellStyle.appliedParagraphStyle
CellStyle.basedOn
CellStyle.bottomEdgeStrokeType
CellStyle.diagonalLineStrokeType
CellStyle.fillColor
CellStyle.leftEdgeStrokeType
CellStyle.rightEdgeStrokeType
CellStyle.topEdgeStrokeType
ChangeGlyphPreference.appliedFont
ChangeGlyphPreference.fontStyle
ChangeGrepPreference.appliedCharacterStyle
ChangeGrepPreference.appliedFont
ChangeGrepPreference.appliedLanguage
ChangeGrepPreference.appliedNumberingList
ChangeGrepPreference.appliedParagraphStyle
ChangeGrepPreference.bulletsCharacterStyle
ChangeGrepPreference.bulletsTextAfter
ChangeGrepPreference.changeTo
ChangeGrepPreference.composer
ChangeGrepPreference.fillColor
ChangeGrepPreference.fontStyle
ChangeGrepPreference.kerningMethod
ChangeGrepPreference.markupTag
ChangeGrepPreference.numberingCharacterStyle
ChangeGrepPreference.numberingExpression
ChangeGrepPreference.numberingFormat
ChangeGrepPreference.strikeThroughColor
ChangeGrepPreference.strikeThroughGapColor
ChangeGrepPreference.strikeThroughType
ChangeGrepPreference.strokeColor
ChangeGrepPreference.underlineColor
ChangeGrepPreference.underlineGapColor
ChangeGrepPreference.underlineType
ChangeObjectPreference.appliedObjectStyles
ChangeObjectPreference.fillColor
ChangeObjectPreference.strokeColor
ChangeObjectPreference.strokeType
ChangeTextPreference.appliedCharacterStyle
ChangeTextPreference.appliedFont
ChangeTextPreference.appliedLanguage
ChangeTextPreference.appliedNumberingList
ChangeTextPreference.appliedParagraphStyle
ChangeTextPreference.bulletsCharacterStyle
ChangeTextPreference.bulletsTextAfter
ChangeTextPreference.changeTo
ChangeTextPreference.composer
ChangeTextPreference.fillColor
ChangeTextPreference.fontStyle
ChangeTextPreference.kerningMethod
ChangeTextPreference.markupTag
ChangeTextPreference.numberingCharacterStyle
ChangeTextPreference.numberingExpression
ChangeTextPreference.numberingFormat
ChangeTextPreference.strikeThroughColor
ChangeTextPreference.strikeThroughGapColor
ChangeTextPreference.strikeThroughType
ChangeTextPreference.strokeColor
ChangeTextPreference.underlineColor
ChangeTextPreference.underlineGapColor
ChangeTextPreference.underlineType
ChapterNumberPreference.chapterNumberFormat
Character.appliedCharacterStyle
Character.appliedFont
Character.appliedLanguage
Character.appliedNumberingList
Character.appliedParagraphStyle
Character.bulletsCharacterStyle
Character.contents
Character.dropCapStyle
Character.fillColor
Character.numberingCharacterStyle
Character.numberingFormat
Character.ruleAboveColor
Character.ruleAboveGapColor
Character.ruleAboveType
Character.ruleBelowColor
Character.ruleBelowGapColor
Character.ruleBelowType
Character.strikeThroughColor
Character.strikeThroughGapColor
Character.strikeThroughType
Character.strokeColor
Character.underlineColor
Character.underlineGapColor
Character.underlineType
CharacterStyle.appliedFont
CharacterStyle.appliedLanguage
CharacterStyle.basedOn
CharacterStyle.fillColor
CharacterStyle.fontStyle
CharacterStyle.kerningMethod
CharacterStyle.strikeThroughColor
CharacterStyle.strikeThroughGapColor
CharacterStyle.strikeThroughType
CharacterStyle.strokeColor
CharacterStyle.underlineColor
CharacterStyle.underlineGapColor
CharacterStyle.underlineType
Checkbox.alignment
Checkbox.helpTip
Checkbox.justify
Checkbox.shortcutKey
Checkbox.text
Checkbox.type
Column.bottomEdgeStrokeType
Column.contents
Column.diagonalLineStrokeType
Column.fillColor
Column.innerColumnStrokeType
Column.innerRowStrokeType
Column.leftEdgeStrokeType
Column.rightEdgeStrokeType
Column.topEdgeStrokeType
CustomTextVariablePreference.contents
DTD.contents
Document.activeLayer
DropDownList.alignment
DropDownList.helpTip
DropDownList.shortcutKey
DropDownList.type
EPSExportPreference.pageRange
EditText.alignment
EditText.helpTip
EditText.justify
EditText.shortcutKey
EditText.text
EditText.textselection
EditText.type
FindGlyphPreference.appliedFont
FindGlyphPreference.fontStyle
FindGrepPreference.appliedCharacterStyle
FindGrepPreference.appliedFont
FindGrepPreference.appliedLanguage
FindGrepPreference.appliedNumberingList
FindGrepPreference.appliedParagraphStyle
FindGrepPreference.bulletsCharacterStyle
FindGrepPreference.bulletsTextAfter
FindGrepPreference.composer
FindGrepPreference.fillColor
FindGrepPreference.findWhat
FindGrepPreference.fontStyle
FindGrepPreference.kerningMethod
FindGrepPreference.numberingCharacterStyle
FindGrepPreference.numberingExpression
FindGrepPreference.numberingFormat
FindGrepPreference.strikeThroughColor
FindGrepPreference.strikeThroughGapColor
FindGrepPreference.strikeThroughType
FindGrepPreference.strokeColor
FindGrepPreference.underlineColor
FindGrepPreference.underlineGapColor
FindGrepPreference.underlineType
FindObjectPreference.appliedObjectStyles
FindObjectPreference.fillColor
FindObjectPreference.strokeColor
FindObjectPreference.strokeType
FindTextPreference.appliedCharacterStyle
FindTextPreference.appliedFont
FindTextPreference.appliedLanguage
FindTextPreference.appliedNumberingList
FindTextPreference.appliedParagraphStyle
FindTextPreference.bulletsCharacterStyle
FindTextPreference.bulletsTextAfter
FindTextPreference.composer
FindTextPreference.fillColor
FindTextPreference.findWhat
FindTextPreference.fontStyle
FindTextPreference.kerningMethod
FindTextPreference.numberingCharacterStyle
FindTextPreference.numberingExpression
FindTextPreference.numberingFormat
FindTextPreference.strikeThroughColor
FindTextPreference.strikeThroughGapColor
FindTextPreference.strikeThroughType
FindTextPreference.strokeColor
FindTextPreference.underlineColor
FindTextPreference.underlineGapColor
FindTextPreference.underlineType
FlashPlayer.alignment
FlashPlayer.helpTip
FlashPlayer.type
Footnote.contents
FootnoteOption.continuingRuleColor
FootnoteOption.continuingRuleGapColor
FootnoteOption.continuingRuleType
FootnoteOption.footnoteNumberingStyle
FootnoteOption.markerPositioning
FootnoteOption.restartNumbering
FootnoteOption.ruleColor
FootnoteOption.ruleGapColor
FootnoteOption.ruleType
FootnoteOption.showPrefixSuffix
FormField.fillColor
FormField.strokeColor
FormField.strokeType
GraphicLine.fillColor
GraphicLine.strokeColor
GraphicLine.strokeType
Group.fillColor
Group.strokeColor
Group.strokeType
Group.alignChildren
Group.alignment
Group.helpTip
Group.orientation
Group.type
IconButton.alignment
IconButton.helpTip
IconButton.shortcutKey
IconButton.type
Image.fillColor
Image.profile
Image.alignment
Image.helpTip
Image.type
IndexOptions.titleStyle
InsertionPoint.appliedCharacterStyle
InsertionPoint.appliedFont
InsertionPoint.appliedLanguage
InsertionPoint.appliedNumberingList
InsertionPoint.appliedParagraphStyle
InsertionPoint.bulletsCharacterStyle
InsertionPoint.contents
InsertionPoint.dropCapStyle
InsertionPoint.fillColor
InsertionPoint.numberingCharacterStyle
InsertionPoint.numberingFormat
InsertionPoint.ruleAboveColor
InsertionPoint.ruleAboveGapColor
InsertionPoint.ruleAboveType
InsertionPoint.ruleBelowColor
InsertionPoint.ruleBelowGapColor
InsertionPoint.ruleBelowType
InsertionPoint.strikeThroughColor
InsertionPoint.strikeThroughGapColor
InsertionPoint.strikeThroughType
InsertionPoint.strokeColor
InsertionPoint.underlineColor
InsertionPoint.underlineGapColor
InsertionPoint.underlineType
LayoutWindow.activeLayer
Line.appliedCharacterStyle
Line.appliedFont
Line.appliedLanguage
Line.appliedNumberingList
Line.appliedParagraphStyle
Line.bulletsCharacterStyle
Line.contents
Line.dropCapStyle
Line.fillColor
Line.numberingCharacterStyle
Line.numberingFormat
Line.ruleAboveColor
Line.ruleAboveGapColor
Line.ruleAboveType
Line.ruleBelowColor
Line.ruleBelowGapColor
Line.ruleBelowType
Line.strikeThroughColor
Line.strikeThroughGapColor
Line.strikeThroughType
Line.strokeColor
Line.underlineColor
Line.underlineGapColor
Line.underlineType
ListBox.alignment
ListBox.helpTip
ListBox.shortcutKey
ListBox.type
ListItem.text
ListItem.type
MatchCharacterStylePreference.appliedCharacterStyle
MatchParagraphStylePreference.appliedParagraphStyle
NestedGrepStyle.appliedCharacterStyle
NestedLineStyle.appliedCharacterStyle
NestedStyle.appliedCharacterStyle
NestedStyle.delimiter
ObjectStyle.appliedParagraphStyle
ObjectStyle.basedOn
ObjectStyle.fillColor
ObjectStyle.strokeColor
ObjectStyle.strokeType
Oval.fillColor
Oval.strokeColor
Oval.strokeType
PDFExportPreference.effectivePDFDestinationProfile
PDFExportPreference.effectivePDFXProfile
PDFExportPreference.pageRange
PDFExportPreference.pdfDestinationProfile
PDFExportPreference.pdfMarkType
PDFExportPreference.pdfXProfile
PDFExportPreset.effectivePDFDestinationProfile
PDFExportPreset.effectivePDFXProfile
PDFExportPreset.pdfDestinationProfile
PDFExportPreset.pdfMarkType
PDFExportPreset.pdfXProfile
Page.appliedTrapPreset
PageItem.fillColor
PageItem.strokeColor
PageItem.strokeType
PageItemDefault.appliedGraphicObjectStyle
PageItemDefault.appliedGridObjectStyle
PageItemDefault.appliedTextObjectStyle
PageItemDefault.fillColor
PageItemDefault.strokeColor
PageItemDefault.strokeType
Panel.alignChildren
Panel.alignment
Panel.helpTip
Panel.justify
Panel.orientation
Panel.text
Panel.type
Paragraph.appliedCharacterStyle
Paragraph.appliedFont
Paragraph.appliedLanguage
Paragraph.appliedNumberingList
Paragraph.appliedParagraphStyle
Paragraph.bulletsCharacterStyle
Paragraph.contents
Paragraph.dropCapStyle
Paragraph.fillColor
Paragraph.numberingCharacterStyle
Paragraph.numberingFormat
Paragraph.ruleAboveColor
Paragraph.ruleAboveGapColor
Paragraph.ruleAboveType
Paragraph.ruleBelowColor
Paragraph.ruleBelowGapColor
Paragraph.ruleBelowType
Paragraph.strikeThroughColor
Paragraph.strikeThroughGapColor
Paragraph.strikeThroughType
Paragraph.strokeColor
Paragraph.underlineColor
Paragraph.underlineGapColor
Paragraph.underlineType
ParagraphStyle.appliedFont
ParagraphStyle.appliedLanguage
ParagraphStyle.appliedNumberingList
ParagraphStyle.basedOn
ParagraphStyle.bulletsCharacterStyle
ParagraphStyle.dropCapStyle
ParagraphStyle.fillColor
ParagraphStyle.numberingCharacterStyle
ParagraphStyle.numberingFormat
ParagraphStyle.ruleAboveColor
ParagraphStyle.ruleAboveGapColor
ParagraphStyle.ruleAboveType
ParagraphStyle.ruleBelowColor
ParagraphStyle.ruleBelowGapColor
ParagraphStyle.ruleBelowType
ParagraphStyle.strikeThroughColor
ParagraphStyle.strikeThroughGapColor
ParagraphStyle.strikeThroughType
ParagraphStyle.strokeColor
ParagraphStyle.underlineColor
ParagraphStyle.underlineGapColor
ParagraphStyle.underlineType
Polygon.fillColor
Polygon.strokeColor
Polygon.strokeType
PreflightBookOption.preflightScope
PreflightBookOption.preflightWorkingProfile
PreflightOption.preflightScope
PreflightOption.preflightWorkingProfile
PrintBookletOption.pageRange
PrintBookletPrintPreference.crd
PrintBookletPrintPreference.markType
PrintBookletPrintPreference.paperSize
PrintBookletPrintPreference.ppd
PrintBookletPrintPreference.printer
PrintBookletPrintPreference.profile
PrintBookletPrintPreference.screening
PrintPreference.crd
PrintPreference.markType
PrintPreference.pageRange
PrintPreference.paperSize
PrintPreference.ppd
PrintPreference.printer
PrintPreference.profile
PrintPreference.screening
PrinterPreset.crd
PrinterPreset.markType
PrinterPreset.paperSize
PrinterPreset.ppd
PrinterPreset.printer
PrinterPreset.profile
PrinterPreset.screening
Progressbar.alignment
Progressbar.helpTip
Progressbar.type
RadioButton.alignment
RadioButton.helpTip
RadioButton.justify
RadioButton.shortcutKey
RadioButton.text
RadioButton.type
Rectangle.fillColor
Rectangle.strokeColor
Rectangle.strokeType
Row.bottomEdgeStrokeType
Row.contents
Row.diagonalLineStrokeType
Row.fillColor
Row.innerColumnStrokeType
Row.innerRowStrokeType
Row.leftEdgeStrokeType
Row.rightEdgeStrokeType
Row.topEdgeStrokeType
RuleDataObject.dataValue
SWFExportPreference.pageRange
ScriptUI.Alignment
ScriptUI.coreVersion
ScriptUI.frameworkName
ScriptUIBrush.theme
ScriptUIFont.family
ScriptUIFont.name
ScriptUIFont.substitute
ScriptUIImage.format
ScriptUIImage.name
ScriptUIImage.pathname
ScriptUIPen.theme
ScriptUIPen.type
Scrollbar.alignment
Scrollbar.helpTip
Scrollbar.shortcutKey
Scrollbar.type
Slider.alignment
Slider.helpTip
Slider.shortcutKey
Slider.type
StaticText.alignment
StaticText.helpTip
StaticText.justify
StaticText.shortcutKey
StaticText.text
StaticText.type
Story.appliedCharacterStyle
Story.appliedFont
Story.appliedLanguage
Story.appliedNumberingList
Story.appliedParagraphStyle
Story.bulletsCharacterStyle
Story.contents
Story.dropCapStyle
Story.fillColor
Story.numberingCharacterStyle
Story.numberingFormat
Story.ruleAboveColor
Story.ruleAboveGapColor
Story.ruleAboveType
Story.ruleBelowColor
Story.ruleBelowGapColor
Story.ruleBelowType
Story.strikeThroughColor
Story.strikeThroughGapColor
Story.strikeThroughType
Story.strokeColor
Story.underlineColor
Story.underlineGapColor
Story.underlineType
StrokeFillProxySetting.fillColor
StrokeFillProxySetting.strokeColor
TOCStyleEntry.formatStyle
TOCStyleEntry.pageNumberStyle
TOCStyleEntry.separatorStyle
Table.appliedTableStyle
Table.bottomBorderStrokeType
Table.endColumnLineStyle
Table.endRowStrokeType
Table.leftBorderStrokeType
Table.rightBorderStrokeType
Table.startColumnStrokeType
Table.startRowStrokeType
Table.topBorderStrokeType
TableStyle.basedOn
TableStyle.bodyRegionCellStyle
TableStyle.bottomBorderStrokeType
TableStyle.endColumnLineStyle
TableStyle.endRowStrokeType
TableStyle.footerRegionCellStyle
TableStyle.headerRegionCellStyle
TableStyle.leftBorderStrokeType
TableStyle.leftColumnRegionCellStyle
TableStyle.rightBorderStrokeType
TableStyle.rightColumnRegionCellStyle
TableStyle.startColumnStrokeType
TableStyle.startRowStrokeType
TableStyle.topBorderStrokeType
Text.appliedCharacterStyle
Text.appliedFont
Text.appliedLanguage
Text.appliedNumberingList
Text.appliedParagraphStyle
Text.bulletsCharacterStyle
Text.contents
Text.dropCapStyle
Text.fillColor
Text.numberingCharacterStyle
Text.numberingFormat
Text.ruleAboveColor
Text.ruleAboveGapColor
Text.ruleAboveType
Text.ruleBelowColor
Text.ruleBelowGapColor
Text.ruleBelowType
Text.strikeThroughColor
Text.strikeThroughGapColor
Text.strikeThroughType
Text.strokeColor
Text.underlineColor
Text.underlineGapColor
Text.underlineType
TextColumn.appliedCharacterStyle
TextColumn.appliedFont
TextColumn.appliedLanguage
TextColumn.appliedNumberingList
TextColumn.appliedParagraphStyle
TextColumn.bulletsCharacterStyle
TextColumn.contents
TextColumn.dropCapStyle
TextColumn.fillColor
TextColumn.numberingCharacterStyle
TextColumn.numberingFormat
TextColumn.ruleAboveColor
TextColumn.ruleAboveGapColor
TextColumn.ruleAboveType
TextColumn.ruleBelowColor
TextColumn.ruleBelowGapColor
TextColumn.ruleBelowType
TextColumn.strikeThroughColor
TextColumn.strikeThroughGapColor
TextColumn.strikeThroughType
TextColumn.strokeColor
TextColumn.underlineColor
TextColumn.underlineGapColor
TextColumn.underlineType
TextDefault.appliedCharacterStyle
TextDefault.appliedFont
TextDefault.appliedLanguage
TextDefault.appliedNumberingList
TextDefault.appliedParagraphStyle
TextDefault.bulletsCharacterStyle
TextDefault.dropCapStyle
TextDefault.fillColor
TextDefault.numberingCharacterStyle
TextDefault.numberingFormat
TextDefault.ruleAboveColor
TextDefault.ruleAboveGapColor
TextDefault.ruleAboveType
TextDefault.ruleBelowColor
TextDefault.ruleBelowGapColor
TextDefault.ruleBelowType
TextDefault.strikeThroughColor
TextDefault.strikeThroughGapColor
TextDefault.strikeThroughType
TextDefault.strokeColor
TextDefault.underlineColor
TextDefault.underlineGapColor
TextDefault.underlineType
TextFrame.contents
TextFrame.fillColor
TextFrame.strokeColor
TextFrame.strokeType
TextPath.contents
TextStyleRange.appliedCharacterStyle
TextStyleRange.appliedFont
TextStyleRange.appliedLanguage
TextStyleRange.appliedNumberingList
TextStyleRange.appliedParagraphStyle
TextStyleRange.bulletsCharacterStyle
TextStyleRange.contents
TextStyleRange.dropCapStyle
TextStyleRange.fillColor
TextStyleRange.numberingCharacterStyle
TextStyleRange.numberingFormat
TextStyleRange.ruleAboveColor
TextStyleRange.ruleAboveGapColor
TextStyleRange.ruleAboveType
TextStyleRange.ruleBelowColor
TextStyleRange.ruleBelowGapColor
TextStyleRange.ruleBelowType
TextStyleRange.strikeThroughColor
TextStyleRange.strikeThroughGapColor
TextStyleRange.strikeThroughType
TextStyleRange.strokeColor
TextStyleRange.underlineColor
TextStyleRange.underlineGapColor
TextStyleRange.underlineType
TreeView.alignment
TreeView.helpTip
TreeView.shortcutKey
TreeView.type
UIEvent.eventPhase
UIEvent.type
Window.alignChildren
Window.alignment
Window.frameworkName
Window.helpTip
Window.justify
Window.orientation
Window.shortcutKey
Window.text
Window.type
Word.appliedCharacterStyle
Word.appliedFont
Word.appliedLanguage
Word.appliedNumberingList
Word.appliedParagraphStyle
Word.bulletsCharacterStyle
Word.contents
Word.dropCapStyle
Word.fillColor
Word.numberingCharacterStyle
Word.numberingFormat
Word.ruleAboveColor
Word.ruleAboveGapColor
Word.ruleAboveType
Word.ruleBelowColor
Word.ruleBelowGapColor
Word.ruleBelowType
Word.strikeThroughColor
Word.strikeThroughGapColor
Word.strikeThroughType
Word.strokeColor
Word.underlineColor
Word.underlineGapColor
Word.underlineType
XFLExportPreference.pageRange
XMLElement.contents
XMLElement.markupTag
XMLExportMap.mappedStyle
XMLExportMap.markupTag
XMLImportMap.mappedStyle
XMLImportMap.markupTag
XmlStory.appliedCharacterStyle
XmlStory.appliedFont
XmlStory.appliedLanguage
XmlStory.appliedNumberingList
XmlStory.appliedParagraphStyle
XmlStory.bulletsCharacterStyle
XmlStory.contents
XmlStory.dropCapStyle
XmlStory.fillColor
XmlStory.numberingCharacterStyle
XmlStory.numberingFormat
XmlStory.ruleAboveColor
XmlStory.ruleAboveGapColor
XmlStory.ruleAboveType
XmlStory.ruleBelowColor
XmlStory.ruleBelowGapColor
XmlStory.ruleBelowType
XmlStory.strikeThroughColor
XmlStory.strikeThroughGapColor
XmlStory.strikeThroughType
XmlStory.strokeColor
XmlStory.underlineColor
XmlStory.underlineGapColor
XmlStory.underlineType
Used in:
AngleCombobox AngleComboboxes.item (index: any)
array of AngleCombobox AngleComboboxes.itemByRange (from: any, to: any)
AngleEditbox AngleEditboxes.item (index: any)
array of AngleEditbox AngleEditboxes.itemByRange (from: any, to: any)
any Application.doScript (script: any[, language: ScriptLanguage=ScriptLanguage.UNKNOWN][, withArguments: Array of any][, undoMode: UndoModes=UndoModes.SCRIPT_REQUEST][, undoName: string=Script])
Asset Assets.item (index: any)
array of Asset Assets.itemByRange (from: any, to: any)
AssignedStory AssignedStories.item (index: any)
array of AssignedStory AssignedStories.itemByRange (from: any, to: any)
Assignment Assignments.item (index: any)
array of Assignment Assignments.itemByRange (from: any, to: any)
AutoCorrectTable AutoCorrectTables.item (index: any)
array of AutoCorrectTable AutoCorrectTables.itemByRange (from: any, to: any)
Behavior Behaviors.item (index: any)
array of Behavior Behaviors.itemByRange (from: any, to: any)
BookContent BookContents.item (index: any)
array of BookContent BookContents.itemByRange (from: any, to: any)
Bookmark Bookmarks.item (index: any)
array of Bookmark Bookmarks.itemByRange (from: any, to: any)
Book Books.item (index: any)
array of Book Books.itemByRange (from: any, to: any)
BorderPanel BorderPanels.item (index: any)
array of BorderPanel BorderPanels.itemByRange (from: any, to: any)
BuildingBlock BuildingBlocks.item (index: any)
array of BuildingBlock BuildingBlocks.itemByRange (from: any, to: any)
void Button.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
bool Button.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Button.notify ([eventName: String])
bool Button.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Button Buttons.item (index: any)
array of Button Buttons.itemByRange (from: any, to: any)
CellStyleGroup CellStyleGroups.item (index: any)
array of CellStyleGroup CellStyleGroups.itemByRange (from: any, to: any)
CellStyle CellStyles.item (index: any)
array of CellStyle CellStyles.itemByRange (from: any, to: any)
Cell Cells.item (index: any)
array of Cell Cells.itemByRange (from: any, to: any)
Change Changes.item (index: any)
array of Change Changes.itemByRange (from: any, to: any)
void Character.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
CharacterStyleGroup CharacterStyleGroups.item (index: any)
array of CharacterStyleGroup CharacterStyleGroups.itemByRange (from: any, to: any)
CharacterStyle CharacterStyles.item (index: any)
array of CharacterStyle CharacterStyles.itemByRange (from: any, to: any)
Character Characters.item (index: any)
array of Character Characters.itemByRange (from: any, to: any)
bool Checkbox.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Checkbox.notify ([eventName: String])
bool Checkbox.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
CheckboxControl CheckboxControls.item (index: any)
array of CheckboxControl CheckboxControls.itemByRange (from: any, to: any)
CloseWindowBehavior CloseWindowBehaviors.item (index: any)
array of CloseWindowBehavior CloseWindowBehaviors.itemByRange (from: any, to: any)
Swatch Color.merge (with: any)
Color Colors.item (index: any)
array of Color Colors.itemByRange (from: any, to: any)
Column Columns.item (index: any)
array of Column Columns.itemByRange (from: any, to: any)
void Condition.remove ([replacingWith: any])
void ConditionSet.remove ([replacingWith: any])
ConditionSet ConditionSets.item (index: any)
array of ConditionSet ConditionSets.itemByRange (from: any, to: any)
Condition Conditions.item (index: any)
array of Condition Conditions.itemByRange (from: any, to: any)
CrossReferenceFormat CrossReferenceFormats.item (index: any)
array of CrossReferenceFormat CrossReferenceFormats.itemByRange (from: any, to: any)
CrossReferenceSource CrossReferenceSources.item (index: any)
array of CrossReferenceSource CrossReferenceSources.itemByRange (from: any, to: any)
CrossReference CrossReferences.item (index: any)
array of CrossReference CrossReferences.itemByRange (from: any, to: any)
array of DTD DTDs.itemByRange (from: any, to: any)
void DashedStrokeStyle.remove ([replacingWith: any])
DashedStrokeStyle DashedStrokeStyles.item (index: any)
array of DashedStrokeStyle DashedStrokeStyles.itemByRange (from: any, to: any)
DataMergeField DataMergeFields.item (index: any)
array of DataMergeField DataMergeFields.itemByRange (from: any, to: any)
DataMergeImagePlaceholder DataMergeImagePlaceholders.item (index: any)
array of DataMergeImagePlaceholder DataMergeImagePlaceholders.itemByRange (from: any, to: any)
DataMergeTextPlaceholder DataMergeTextPlaceholders.item (index: any)
array of DataMergeTextPlaceholder DataMergeTextPlaceholders.itemByRange (from: any, to: any)
DialogColumn DialogColumns.item (index: any)
array of DialogColumn DialogColumns.itemByRange (from: any, to: any)
DialogRow DialogRows.item (index: any)
array of DialogRow DialogRows.itemByRange (from: any, to: any)
Dialog Dialogs.item (index: any)
array of Dialog Dialogs.itemByRange (from: any, to: any)
DisplaySetting DisplaySettings.item (index: any)
array of DisplaySetting DisplaySettings.itemByRange (from: any, to: any)
PreflightProfile Document.embed (using: any)
void Document.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
DocumentPreset DocumentPresets.item (index: any)
array of DocumentPreset DocumentPresets.itemByRange (from: any, to: any)
Document Documents.item (index: any)
array of Document Documents.itemByRange (from: any, to: any)
void DottedStrokeStyle.remove ([replacingWith: any])
DottedStrokeStyle DottedStrokeStyles.item (index: any)
array of DottedStrokeStyle DottedStrokeStyles.itemByRange (from: any, to: any)
ListItem DropDownList.add (type: String[, text: String])
bool DropDownList.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
ListItem DropDownList.find (text: String)
void DropDownList.notify ([eventName: String])
bool DropDownList.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Dropdown Dropdowns.item (index: any)
array of Dropdown Dropdowns.itemByRange (from: any, to: any)
void EPS.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
array of EPS EPSs.itemByRange (from: any, to: any)
bool EditText.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void EditText.notify ([eventName: String])
bool EditText.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
EnablingGroup EnablingGroups.item (index: any)
array of EnablingGroup EnablingGroups.itemByRange (from: any, to: any)
EventListener EventListeners.item (index: any)
array of EventListener EventListeners.itemByRange (from: any, to: any)
Event Events.item (index: any)
array of Event Events.itemByRange (from: any, to: any)
bool FlashPlayer.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Any FlashPlayer.invokePlayerFunction (name: String[, argument: Any])
void FlashPlayer.notify ([eventName: String])
bool FlashPlayer.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
FlattenerPreset FlattenerPresets.item (index: any)
array of FlattenerPreset FlattenerPresets.itemByRange (from: any, to: any)
bool Font.checkOpenTypeFeature (using: any)
Font Fonts.item (index: any)
array of Font Fonts.itemByRange (from: any, to: any)
Footnote Footnotes.item (index: any)
array of Footnote Footnotes.itemByRange (from: any, to: any)
void FormField.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
FormField FormFields.item (index: any)
array of FormField FormFields.itemByRange (from: any, to: any)
GotoAnchorBehavior GotoAnchorBehaviors.item (index: any)
array of GotoAnchorBehavior GotoAnchorBehaviors.itemByRange (from: any, to: any)
GotoFirstPageBehavior GotoFirstPageBehaviors.item (index: any)
array of GotoFirstPageBehavior GotoFirstPageBehaviors.itemByRange (from: any, to: any)
GotoLastPageBehavior GotoLastPageBehaviors.item (index: any)
array of GotoLastPageBehavior GotoLastPageBehaviors.itemByRange (from: any, to: any)
GotoNextPageBehavior GotoNextPageBehaviors.item (index: any)
array of GotoNextPageBehavior GotoNextPageBehaviors.itemByRange (from: any, to: any)
GotoNextViewBehavior GotoNextViewBehaviors.item (index: any)
array of GotoNextViewBehavior GotoNextViewBehaviors.itemByRange (from: any, to: any)
GotoPageBehavior GotoPageBehaviors.item (index: any)
array of GotoPageBehavior GotoPageBehaviors.itemByRange (from: any, to: any)
GotoPreviousPageBehavior GotoPreviousPageBehaviors.item (index: any)
array of GotoPreviousPageBehavior GotoPreviousPageBehaviors.itemByRange (from: any, to: any)
GotoPreviousViewBehavior GotoPreviousViewBehaviors.item (index: any)
array of GotoPreviousViewBehavior GotoPreviousViewBehaviors.itemByRange (from: any, to: any)
GotoURLBehavior GotoURLBehaviors.item (index: any)
array of GotoURLBehavior GotoURLBehaviors.itemByRange (from: any, to: any)
Swatch Gradient.merge (with: any)
GradientStop GradientStops.item (index: any)
array of GradientStop GradientStops.itemByRange (from: any, to: any)
Gradient Gradients.item (index: any)
array of Gradient Gradients.itemByRange (from: any, to: any)
void Graphic.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
GraphicLayer GraphicLayers.item (index: any)
array of GraphicLayer GraphicLayers.itemByRange (from: any, to: any)
void GraphicLine.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
GraphicLine GraphicLines.item (index: any)
array of GraphicLine GraphicLines.itemByRange (from: any, to: any)
Graphic Graphics.item (index: any)
array of Graphic Graphics.itemByRange (from: any, to: any)
void Group.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Object Group.add (type: String[, bounds: Bounds][, text: String][, properties: Object])
bool Group.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
bool Group.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Group Groups.item (index: any)
array of Group Groups.itemByRange (from: any, to: any)
Guide Guides.item (index: any)
array of Guide Guides.itemByRange (from: any, to: any)
HiddenText HiddenTexts.item (index: any)
array of HiddenText HiddenTexts.itemByRange (from: any, to: any)
HyperlinkExternalPageDestination HyperlinkExternalPageDestinations.item (index: any)
array of HyperlinkExternalPageDestination HyperlinkExternalPageDestinations.itemByRange (from: any, to: any)
HyperlinkPageDestination HyperlinkPageDestinations.item (index: any)
array of HyperlinkPageDestination HyperlinkPageDestinations.itemByRange (from: any, to: any)
HyperlinkPageItemSource HyperlinkPageItemSources.item (index: any)
array of HyperlinkPageItemSource HyperlinkPageItemSources.itemByRange (from: any, to: any)
HyperlinkTextDestination HyperlinkTextDestinations.item (index: any)
array of HyperlinkTextDestination HyperlinkTextDestinations.itemByRange (from: any, to: any)
HyperlinkTextSource HyperlinkTextSources.item (index: any)
array of HyperlinkTextSource HyperlinkTextSources.itemByRange (from: any, to: any)
HyperlinkURLDestination HyperlinkURLDestinations.item (index: any)
array of HyperlinkURLDestination HyperlinkURLDestinations.itemByRange (from: any, to: any)
Hyperlink Hyperlinks.item (index: any)
array of Hyperlink Hyperlinks.itemByRange (from: any, to: any)
HyphenationException HyphenationExceptions.item (index: any)
array of HyphenationException HyphenationExceptions.itemByRange (from: any, to: any)
bool IconButton.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void IconButton.notify ([eventName: String])
bool IconButton.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Image.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
bool Image.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
bool Image.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Image Images.item (index: any)
array of Image Images.itemByRange (from: any, to: any)
void ImportedPage.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
ImportedPage ImportedPages.item (index: any)
array of ImportedPage ImportedPages.itemByRange (from: any, to: any)
IndexSection IndexSections.item (index: any)
array of IndexSection IndexSections.itemByRange (from: any, to: any)
Index Indexes.item (index: any)
array of Index Indexes.itemByRange (from: any, to: any)
IndexingSortOption IndexingSortOptions.item (index: any)
array of IndexingSortOption IndexingSortOptions.itemByRange (from: any, to: any)
array of Ink Inks.itemByRange (from: any, to: any)
void InsertionPoint.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
InsertionPoint InsertionPoints.item (index: any)
array of InsertionPoint InsertionPoints.itemByRange (from: any, to: any)
IntegerCombobox IntegerComboboxes.item (index: any)
array of IntegerCombobox IntegerComboboxes.itemByRange (from: any, to: any)
IntegerEditbox IntegerEditboxes.item (index: any)
array of IntegerEditbox IntegerEditboxes.itemByRange (from: any, to: any)
Language Languages.item (index: any)
array of Language Languages.itemByRange (from: any, to: any)
LanguageWithVendors LanguagesWithVendors.item (index: any)
array of LanguageWithVendors LanguagesWithVendors.itemByRange (from: any, to: any)
Layer Layers.item (index: any)
array of Layer Layers.itemByRange (from: any, to: any)
LayoutWindow LayoutWindows.item (index: any)
array of LayoutWindow LayoutWindows.itemByRange (from: any, to: any)
Library Libraries.item (index: any)
array of Library Libraries.itemByRange (from: any, to: any)
void Line.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Line Lines.item (index: any)
array of Line Lines.itemByRange (from: any, to: any)
void Link.relink (to: any)
Link Links.item (index: any)
array of Link Links.itemByRange (from: any, to: any)
ListItem ListBox.add (type: String[, text: String])
bool ListBox.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
ListItem ListBox.find (text: String)
void ListBox.notify ([eventName: String])
bool ListBox.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
MasterSpread MasterSpreads.item (index: any)
array of MasterSpread MasterSpreads.itemByRange (from: any, to: any)
MeasurementCombobox MeasurementComboboxes.item (index: any)
array of MeasurementCombobox MeasurementComboboxes.itemByRange (from: any, to: any)
MeasurementEditbox MeasurementEditboxes.item (index: any)
array of MeasurementEditbox MeasurementEditboxes.itemByRange (from: any, to: any)
MenuAction MenuActions.item (index: any)
array of MenuAction MenuActions.itemByRange (from: any, to: any)
MenuElement MenuElements.item (index: any)
array of MenuElement MenuElements.itemByRange (from: any, to: any)
MenuItem MenuItems.item (index: any)
array of MenuItem MenuItems.itemByRange (from: any, to: any)
MenuSeparator MenuSeparators.item (index: any)
array of MenuSeparator MenuSeparators.itemByRange (from: any, to: any)
Menu Menus.item (index: any)
array of Menu Menus.itemByRange (from: any, to: any)
Swatch MixedInk.merge (with: any)
Swatch MixedInkGroup.merge (with: any)
MixedInkGroup MixedInkGroups.item (index: any)
array of MixedInkGroup MixedInkGroups.itemByRange (from: any, to: any)
MixedInk MixedInks.item (index: any)
array of MixedInk MixedInks.itemByRange (from: any, to: any)
MovieBehavior MovieBehaviors.item (index: any)
array of MovieBehavior MovieBehaviors.itemByRange (from: any, to: any)
Movie Movies.item (index: any)
array of Movie Movies.itemByRange (from: any, to: any)
NestedGrepStyle NestedGrepStyles.item (index: any)
array of NestedGrepStyle NestedGrepStyles.itemByRange (from: any, to: any)
NestedLineStyle NestedLineStyles.item (index: any)
array of NestedLineStyle NestedLineStyles.itemByRange (from: any, to: any)
NestedStyle NestedStyles.item (index: any)
array of NestedStyle NestedStyles.itemByRange (from: any, to: any)
Note Notes.item (index: any)
array of Note Notes.itemByRange (from: any, to: any)
NumberingList NumberingLists.item (index: any)
array of NumberingList NumberingLists.itemByRange (from: any, to: any)
ObjectStyleGroup ObjectStyleGroups.item (index: any)
array of ObjectStyleGroup ObjectStyleGroups.itemByRange (from: any, to: any)
ObjectStyle ObjectStyles.item (index: any)
array of ObjectStyle ObjectStyles.itemByRange (from: any, to: any)
OpacityGradientStop OpacityGradientStops.item (index: any)
array of OpacityGradientStop OpacityGradientStops.itemByRange (from: any, to: any)
OpenFileBehavior OpenFileBehaviors.item (index: any)
array of OpenFileBehavior OpenFileBehaviors.itemByRange (from: any, to: any)
void Oval.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Oval Ovals.item (index: any)
array of Oval Ovals.itemByRange (from: any, to: any)
void PDF.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
PDFExportPreset PDFExportPresets.item (index: any)
array of PDFExportPreset PDFExportPresets.itemByRange (from: any, to: any)
array of PDF PDFs.itemByRange (from: any, to: any)
void PICT.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
PICT PICTs.item (index: any)
array of PICT PICTs.itemByRange (from: any, to: any)
void PageItem.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
PageItem PageItems.item (index: any)
array of PageItem PageItems.itemByRange (from: any, to: any)
PageReference PageReferences.item (index: any)
array of PageReference PageReferences.itemByRange (from: any, to: any)
Page Pages.item (index: any)
array of Page Pages.itemByRange (from: any, to: any)
Object Panel.add (type: String[, bounds: Bounds][, text: String][, properties: Object])
bool Panel.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
bool Panel.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Panel Panels.item (index: any)
array of Panel Panels.itemByRange (from: any, to: any)
void Paragraph.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
ParagraphDestination ParagraphDestinations.item (index: any)
array of ParagraphDestination ParagraphDestinations.itemByRange (from: any, to: any)
ParagraphStyleGroup ParagraphStyleGroups.item (index: any)
array of ParagraphStyleGroup ParagraphStyleGroups.itemByRange (from: any, to: any)
ParagraphStyle ParagraphStyles.item (index: any)
array of ParagraphStyle ParagraphStyles.itemByRange (from: any, to: any)
Paragraph Paragraphs.item (index: any)
array of Paragraph Paragraphs.itemByRange (from: any, to: any)
PathPoint PathPoints.item (index: any)
array of PathPoint PathPoints.itemByRange (from: any, to: any)
Path Paths.item (index: any)
array of Path Paths.itemByRange (from: any, to: any)
PercentCombobox PercentComboboxes.item (index: any)
array of PercentCombobox PercentComboboxes.itemByRange (from: any, to: any)
PercentEditbox PercentEditboxes.item (index: any)
array of PercentEditbox PercentEditboxes.itemByRange (from: any, to: any)
void Polygon.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Polygon Polygons.item (index: any)
array of Polygon Polygons.itemByRange (from: any, to: any)
Preference Preferences.item (index: any)
array of Preference Preferences.itemByRange (from: any, to: any)
PreflightProcess PreflightProcesses.item (index: any)
array of PreflightProcess PreflightProcesses.itemByRange (from: any, to: any)
void PreflightProfile.update ([using: any])
PreflightProfileRule PreflightProfileRules.item (index: any)
array of PreflightProfileRule PreflightProfileRules.itemByRange (from: any, to: any)
PreflightProfile PreflightProfiles.item (index: any)
array of PreflightProfile PreflightProfiles.itemByRange (from: any, to: any)
PreflightRuleInstance PreflightRuleInstances.item (index: any)
array of PreflightRuleInstance PreflightRuleInstances.itemByRange (from: any, to: any)
PreflightRule PreflightRules.item (index: any)
array of PreflightRule PreflightRules.itemByRange (from: any, to: any)
PrinterPreset PrinterPresets.item (index: any)
array of PrinterPreset PrinterPresets.itemByRange (from: any, to: any)
bool Progressbar.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
bool Progressbar.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
QuitBehavior QuitBehaviors.item (index: any)
array of QuitBehavior QuitBehaviors.itemByRange (from: any, to: any)
bool RadioButton.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void RadioButton.notify ([eventName: String])
bool RadioButton.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
RadiobuttonControl RadiobuttonControls.item (index: any)
array of RadiobuttonControl RadiobuttonControls.itemByRange (from: any, to: any)
RadiobuttonGroup RadiobuttonGroups.item (index: any)
array of RadiobuttonGroup RadiobuttonGroups.itemByRange (from: any, to: any)
RealCombobox RealComboboxes.item (index: any)
array of RealCombobox RealComboboxes.itemByRange (from: any, to: any)
RealEditbox RealEditboxes.item (index: any)
array of RealEditbox RealEditboxes.itemByRange (from: any, to: any)
void Rectangle.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Rectangle Rectangles.item (index: any)
array of Rectangle Rectangles.itemByRange (from: any, to: any)
array of Row Rows.itemByRange (from: any, to: any)
RuleDataObject RuleDataObjects.add (name: string, dataType: RuleDataType, dataValue: any[, withProperties: Object])
RuleDataObject RuleDataObjects.item (index: any)
array of RuleDataObject RuleDataObjects.itemByRange (from: any, to: any)
ScriptMenuAction ScriptMenuActions.item (index: any)
array of ScriptMenuAction ScriptMenuActions.itemByRange (from: any, to: any)
String ScriptUI.getResourceText (text: String)
ScriptUIFont ScriptUI.newFont (name: String, style: String | Number, size: Number)
ScriptUIImage ScriptUI.newImage (normal: String[, disabled: String][, pressed: String][, rollover: String])
void ScriptUIGraphics.drawString (text: String, pen: ScriptUIPen, x: Number, y: Number[, font: ScriptUIFont])
Dimension ScriptUIGraphics.measureString (text: String[, font: ScriptUIFont][, boundingWidth: Number])
ScriptUIBrush ScriptUIGraphics.newBrush (type: Number, color: Array of Number | String)
ScriptUIPen ScriptUIGraphics.newPen (type: Number, color: Array of Number | String)
bool Scrollbar.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Scrollbar.notify ([eventName: String])
bool Scrollbar.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Section Sections.item (index: any)
array of Section Sections.itemByRange (from: any, to: any)
ShowHideFieldsBehavior ShowHideFieldsBehaviors.item (index: any)
array of ShowHideFieldsBehavior ShowHideFieldsBehaviors.itemByRange (from: any, to: any)
bool Slider.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Slider.notify ([eventName: String])
bool Slider.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
SoundBehavior SoundBehaviors.item (index: any)
array of SoundBehavior SoundBehaviors.itemByRange (from: any, to: any)
Sound Sounds.item (index: any)
array of Sound Sounds.itemByRange (from: any, to: any)
Spread Spreads.item (index: any)
array of Spread Spreads.itemByRange (from: any, to: any)
State States.item (index: any)
array of State States.itemByRange (from: any, to: any)
bool StaticText.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void StaticText.notify ([eventName: String])
bool StaticText.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
StaticText StaticTexts.item (index: any)
array of StaticText StaticTexts.itemByRange (from: any, to: any)
Story Stories.item (index: any)
array of Story Stories.itemByRange (from: any, to: any)
void Story.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
StoryWindow StoryWindows.item (index: any)
array of StoryWindow StoryWindows.itemByRange (from: any, to: any)
void StripedStrokeStyle.remove ([replacingWith: any])
StripedStrokeStyle StripedStrokeStyles.item (index: any)
array of StripedStrokeStyle StripedStrokeStyles.itemByRange (from: any, to: any)
void StrokeStyle.remove ([replacingWith: any])
StrokeStyle StrokeStyles.item (index: any)
array of StrokeStyle StrokeStyles.itemByRange (from: any, to: any)
Submenu Submenus.item (index: any)
array of Submenu Submenus.itemByRange (from: any, to: any)
Swatch Swatch.merge (with: any)
Swatch Swatches.item (index: any)
array of Swatch Swatches.itemByRange (from: any, to: any)
TOCStyleEntry TOCStyleEntries.item (index: any)
array of TOCStyleEntry TOCStyleEntries.itemByRange (from: any, to: any)
TOCStyle TOCStyles.item (index: any)
array of TOCStyle TOCStyles.itemByRange (from: any, to: any)
TabStop TabStops.item (index: any)
array of TabStop TabStops.itemByRange (from: any, to: any)
TableStyleGroup TableStyleGroups.item (index: any)
array of TableStyleGroup TableStyleGroups.itemByRange (from: any, to: any)
TableStyle TableStyles.item (index: any)
array of TableStyle TableStyles.itemByRange (from: any, to: any)
Table Tables.item (index: any)
array of Table Tables.itemByRange (from: any, to: any)
void Text.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
void TextColumn.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
TextColumn TextColumns.item (index: any)
array of TextColumn TextColumns.itemByRange (from: any, to: any)
TextEditbox TextEditboxes.item (index: any)
array of TextEditbox TextEditboxes.itemByRange (from: any, to: any)
void TextFrame.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
TextFrame TextFrames.item (index: any)
array of TextFrame TextFrames.itemByRange (from: any, to: any)
TextPath TextPaths.item (index: any)
array of TextPath TextPaths.itemByRange (from: any, to: any)
void TextStyleRange.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
TextStyleRange TextStyleRanges.item (index: any)
array of TextStyleRange TextStyleRanges.itemByRange (from: any, to: any)
TextVariableInstance TextVariableInstances.item (index: any)
array of TextVariableInstance TextVariableInstances.itemByRange (from: any, to: any)
TextVariable TextVariables.item (index: any)
array of TextVariable TextVariables.itemByRange (from: any, to: any)
Text Texts.item (index: any)
array of Text Texts.itemByRange (from: any, to: any)
Swatch Tint.merge (with: any)
Tint Tints.item (index: any)
array of Tint Tints.itemByRange (from: any, to: any)
Topic Topics.item (index: any)
array of Topic Topics.itemByRange (from: any, to: any)
TransformationMatrix TransformationMatrices.item (index: any)
array of TransformationMatrix TransformationMatrices.itemByRange (from: any, to: any)
TrapPreset TrapPresets.item (index: any)
array of TrapPreset TrapPresets.itemByRange (from: any, to: any)
ListItem TreeView.add (type: String[, text: String])
bool TreeView.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
ListItem TreeView.find (text: String)
void TreeView.notify ([eventName: String])
bool TreeView.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
UIEvent UIEvent.UIEvent (type: String[, captures: bool=false][, bubbles: bool=false][, view: Object][, detail: Number])
void UIEvent.initEvent (type: String[, captures: bool=false][, bubbles: bool=false][, cancelable: bool=false])
void UIEvent.initUIEvent (type: String[, captures: bool=false][, bubbles: bool=false][, view: Object][, detail: Number])
UserDictionary UserDictionaries.item (index: any)
array of UserDictionary UserDictionaries.itemByRange (from: any, to: any)
ValidationError ValidationErrors.item (index: any)
array of ValidationError ValidationErrors.itemByRange (from: any, to: any)
ViewZoomBehavior ViewZoomBehaviors.item (index: any)
array of ViewZoomBehavior ViewZoomBehaviors.itemByRange (from: any, to: any)
void WMF.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
array of WMF WMFs.itemByRange (from: any, to: any)
Widget Widgets.item (index: any)
array of Widget Widgets.itemByRange (from: any, to: any)
void Window.Window (type: String[, title: String][, bounds: Bounds][, properties: Object])
Object Window.add (type: String[, bounds: Bounds][, text: String][, properties: Object])
bool Window.addEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
void Window.alert (message: String[, title: String][, errorIcon: bool=false])
bool Window.confirm (message: String[, noAsDefault: bool=false][, title: String])
Window (SUI) Window.find (type: String, title: String)
void Window.notify ([eventName: String])
String Window.prompt (prompt: String[, default: String][, title: String])
bool Window.removeEventListener (eventName: String, handler: Function[, capturePhase: bool=false])
Window Windows.item (index: any)
array of Window Windows.itemByRange (from: any, to: any)
void Word.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Word Words.item (index: any)
array of Word Words.itemByRange (from: any, to: any)
XMLAttribute XMLAttributes.item (index: any)
array of XMLAttribute XMLAttributes.itemByRange (from: any, to: any)
XMLComment XMLComments.item (index: any)
array of XMLComment XMLComments.itemByRange (from: any, to: any)
void XMLElement.applyCellStyle (using: any[, clearingOverrides: bool=true])
void XMLElement.applyCharacterStyle (using: any)
void XMLElement.applyObjectStyle (using: any[, clearingOverrides: bool=true][, clearingOverridesThroughRootObjectStyle: bool=false])
void XMLElement.applyParagraphStyle (using: any[, clearingOverrides: bool=true])
void XMLElement.applyTableStyle (using: any[, clearingOverrides: bool=true])
void XMLElement.exportFile (format: any, to: File[, showingOptions: bool=false][, using: PDFExportPreset][, versionComments: string][, forceSave: bool=false])
Text XMLElement.insertTextAsContent (using: any, position: XMLElementPosition)
XMLElement XMLElements.add (markupTag: any[, xmlContent: any][, withProperties: Object])
XMLElement XMLElements.item (index: any)
array of XMLElement XMLElements.itemByRange (from: any, to: any)
XMLExportMap XMLExportMaps.add (mappedStyle: any, markupTag: any[, withProperties: Object])
XMLExportMap XMLExportMaps.item (index: any)
array of XMLExportMap XMLExportMaps.itemByRange (from: any, to: any)
XMLImportMap XMLImportMaps.add (markupTag: any, mappedStyle: any[, withProperties: Object])
XMLImportMap XMLImportMaps.item (index: any)
array of XMLImportMap XMLImportMaps.itemByRange (from: any, to: any)
XMLInstruction XMLInstructions.item (index: any)
array of XMLInstruction XMLInstructions.itemByRange (from: any, to: any)
XMLItem XMLItems.item (index: any)
array of XMLItem XMLItems.itemByRange (from: any, to: any)
XMLRuleProcessor XMLRuleProcessors.item (index: any)
array of XMLRuleProcessor XMLRuleProcessors.itemByRange (from: any, to: any)
void XMLTag.remove (replacingWith: any)
XMLTag XMLTags.item (index: any)
array of XMLTag XMLTags.itemByRange (from: any, to: any)
XmlStory XmlStories.item (index: any)
array of XmlStory XmlStories.itemByRange (from: any, to: any)
Return
String ScriptUI.getResourceText (text: String)
String String.String (value: any)
String String.fromCharCode (value1: number)
String Window (SUI).prompt (prompt: String[, default: String][, title: String])
Jongware, 20-Jun-2010 v3.0.3d | Contents :: Index |