InsertionPoint¶
app.activeDocument.textFrames[index].insertionPoints[index]
Description¶
A location between characters that is used to insert new text objects. An insertion point is contained in an InsertionPoints
collection.
Properties¶
InsertionPoint.characters¶
app.activeDocument.textFrames[index].insertionPoints[index].characters
Description¶
All the characters in this text range.
Type¶
Characters; read-only.
InsertionPoint.lines¶
app.activeDocument.textFrames[index].insertionPoints[index].lines
Description¶
All the lines in this text range.
Type¶
Lines; read-only.
InsertionPoint.paragraphs¶
app.activeDocument.textFrames[index].insertionPoints[index].paragraphs
Description¶
All the paragraphs in this text range.
Type¶
Paragraphs; read-only.
InsertionPoint.parent¶
app.activeDocument.textFrames[index].insertionPoints[index].parent
Description¶
The object's container.
Type¶
TextRange; read-only.
InsertionPoint.story¶
app.activeDocument.textFrames[index].insertionPoints[index].story
Description¶
The story to which the text range belongs.
Type¶
Story; read-only.
InsertionPoint.textRanges¶
app.activeDocument.textFrames[index].insertionPoints[index].textRanges
Description¶
All of the text in this text range.
Type¶
TextRanges; read-only.
InsertionPoint.typename¶
app.activeDocument.textFrames[index].insertionPoints[index].typename
Description¶
The class name of the object.
Type¶
String; read-only.
InsertionPoint.words¶
app.activeDocument.textFrames[index].insertionPoints[index].words
Description¶
All the words contained in this text range.
Type¶
Words; read-only.