Word.RangeLocation enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/get-paragraph-on-insertion-point.yaml
await Word.run(async (context) => {
// Get the complete sentence (as range) associated with the insertion point.
const sentences: Word.RangeCollection = context.document
.getSelection()
.getTextRanges(["."] /* Using the "." as delimiter */, false /*means without trimming spaces*/);
sentences.load("$none");
await context.sync();
// Expand the range to the end of the paragraph to get all the complete sentences.
const sentencesToTheEndOfParagraph: Word.RangeCollection = sentences.items[0]
.getRange()
.expandTo(
context.document
.getSelection()
.paragraphs.getFirst()
.getRange(Word.RangeLocation.end)
)
.getTextRanges(["."], false /* Don't trim spaces*/);
sentencesToTheEndOfParagraph.load("text");
await context.sync();
for (let i = 0; i < sentencesToTheEndOfParagraph.items.length; i++) {
console.log(sentencesToTheEndOfParagraph.items[i].text);
}
});
フィールド
after = "After" | オブジェクトの後のポイント。 オブジェクトが段落コンテンツ コントロールまたはテーブル コンテンツ コントロールの場合は、EOP または Table 文字の後のポイントになります。 |
before = "Before" | コンテンツ コントロールの場合のみ。 これは、開始タグの前のポイントです。 |
content = "Content" | 'Start' と 'End' の範囲。 |
end = "End" | オブジェクトの終了ポイント。 段落の場合、これは EOP の前のポイントです。 コンテンツ コントロールの場合は、終了タグの前のポイントです。 |
start = "Start" | オブジェクトの開始点。 コンテンツ コントロールの場合は、開始タグの後のポイントです。 |
whole = "Whole" | オブジェクトの範囲全体。 オブジェクトが段落コンテンツ コントロールまたはテーブル コンテンツ コントロールの場合は、コンテンツ コントロールの後の EOP または Table 文字も含まれます。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins