Office Word JS-仅在选定的表格单元格中获取段落项

时间:2018-10-25 21:18:23

标签: javascript ms-word office-js

我正在使用Office JS开发Word的加载项。我有一个问题,无法在“表”选择中获取当前选定的段落项,并选择了一部分表单元格。 API仅返回最后个选定表行的段落项。

我只想获取当前选定单元格中的特定段落。

enter image description here

如果选择在另一个元素之前或之后,例如。空段。返回所有段落。

enter image description here

这可以通过在选择中加载段落来看到。

  const range = context.document.getSelection();
  const paragraphs = range.paragraphs;

  range.load('paragraphs');
  paragraphs.load();

  await context.sync();

  console.log('Paragraphs', paragraphs.items);

有没有解决此问题的方法?

0 个答案:

没有答案