remove()

書式

insertionPointObject.remove()

説明

remove()はinsertionPointオブジェクトで指定された範囲を削除します。remove()には指定できるパラメーターはありません。
var para=app.activeDocument.textFrames[0].paragraphs[0];
para.insertionPoints.itemByRange(1,4).remove();

目次に戻る