2

这是在应用程序级加载项中尝试的。扩展范围的文档表明提供WdUnits参数作为引用对象应该会成功。对于大部分WdUnits系列来说,它确实如此。但是,令人费解的是,不是为了WdUnits.wdLine. 以下代码似乎总是失败:

object lineUnit = WdUnits.wdLine;
var rng = document.Range(document.Content.Start, document.Content.Start);
// throws COMException with ErrorCode -2146824168: Bad Parameter
tempRange.Expand(ref lineUnit);

但对 a 的相同操作Selection成功:

object lineUnit = WdUnits.wdLine;
document.Range(document.Content.Start, document.Content.Start).Select();
// Word groks this happily
Globals.ThisAddIn.Application.Selection.Expand(ref lineUnit);

为什么会出现这种情况?

4

1 回答 1

1

你知道,我认为这是互操作中的一个错误。我解决它的方法是使用 wdSentence 并为表编写其他代码(以识别行)。我必须为我的 DeleteWhere 包装方法执行此操作。

        public bool DeleteWhere(string value, StringContentType type = StringContentType.Item, bool caseSensitive = true)
        {
            if (string.IsNullOrWhiteSpace(value))
            {
                return false;
            }
            bool ret = false;
            if (type == StringContentType.Line)
            {
                ret = DeleteRowWhere(value, caseSensitive);
            }
            object mytype = type.ToWdUnits();
            if (type == StringContentType.Line)
            {
                mytype = Microsoft.Office.Interop.Word.WdUnits.wdSentence;
            }
            Microsoft.Office.Interop.Word.Range range = doc.Content;
            object matchword = true;
            while (range.Find.Execute(value, caseSensitive, matchword))
            {
                range.Expand(ref mytype);
                range.Delete();
                ret = true;
            }
            return ret;
        }

        private bool DeleteRowWhere(string value, bool caseSensitive = true)
        {
            bool ret = false;
            string search = caseSensitive ? value : value?.ToUpperInvariant();
            foreach (Microsoft.Office.Interop.Word.Table table in doc.Tables)
            {
                for (int x = 1; x <= table.Rows.Count; x++)
                {
                    for (int y = 1; y <= table.Columns.Count; y++)
                    {
                        string val = caseSensitive ? table.Cell(x, y).Range.Text : table.Cell(x, y).Range.Text?.ToUpperInvariant();
                        if (val != null && val.Contains(search))
                        {
                            table.Rows[x].Delete();
                            ret = true;
                        }
                    }
                }
            }
            return ret;
        }
于 2020-05-07T15:34:35.087 回答