跳到主要内容

IntersectWith

返回当前范围与另一个范围的交集作为新范围。当前范围未更改。

语法

expression.IntersectWith(oRange);

expression - 表示 ApiRange 类的变量。

参数

名称必需/可选数据类型默认值描述
oRange必需ApiRange将与当前范围相交的范围。

返回值

ApiRange | null

示例

此示例返回当前范围与另一个范围的交集作为新范围。

// How to intersect two ranges into the new one.

// Create a range by intersection of two and make its text bold.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("Lorem ipsum dolor sit amet,");
paragraph.AddText(" consectetuer adipiscing elit,");
paragraph.AddText(" sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.");
let rangeFirst = doc.GetRange(0, 49);
let rangeSecond = doc.GetRange(22, 123);
let range = rangeFirst.IntersectWith(rangeSecond);
range.SetBold(true);