emeditor 的 marco select 可以模拟多行吗?

can emeditor's marco select multi-line simulatensly?

我现在正在研究和测试emeditor的marco 在这里,我有一个关于如何使用 emediotr 的 marco 到 select 多行的问题 例如 我想 select line-10 到 line-20 模拟 我如何用 marco 语言做到这一点

我知道我可以使用这个

document.selection.SetActivePoint(eePosView,1,10)
document.selection.selectline();
document.selection.SetActivePoint(eePosView,1,10)
document.selection.selectline();

但是只能select第10行然后第20行,有两行 怎么可以select line-10 to line-20 simulatensly , like line-10 to line-20 , there are 10 lines

我的英语很差 谢谢你花时间阅读我糟糕的英语 我没有 javascript 的技能,如果可能的话,代码尽可能简单, 谢谢

如果你想select第10-20行,你可以这样写一个宏:

document.selection.SetActivePoint(eePosView,1,10);
document.selection.SetActivePoint(eePosView,1,20,true);