gpt4 book ai didi

ms-word - C# Word Interop - Range.HighlightColorIndex 返回 999999 - 这是有意的吗?

转载 作者:行者123 更新时间:2023-12-01 16:22:43 24 4
gpt4 key购买 nike

使用 Word Interop API 我有一个文档,我从中删除了用特定颜色突出显示的文本。归结起来,逻辑类似这样:

if(range.HighlightColorIndex == WdColorIndex.wdYellow)
{
range.Delete();
}

对于某些文档,我注意到 range.HighlightColorIndex 返回值:999999

通过查看 WdColorIndex 枚举(它是 HighlightColorIndex 属性的类型),我看到枚举是通过在从-116,这没有解释返回的 999999 数字。

此外,通过使用 Word,我注意到一些奇怪的行为。创建一个包含两条黄色突出显示行的新文档 - 第一行包含文本和超链接,第二行仅包含文本:

  • 在第一次保存和关闭文档之前,Word 会在逐行选择时将每一行识别为以黄色突出显示。
  • 保存、关闭并重新打开文档后,Word 不再将带有文本和超链接的行识别为突出显示,而仅包含文本的行仍被识别为突出显示。

打开文档后Word高亮识别截图如下:

Possible Word Highlight Bug

从这项研究来看,这似乎是 Word 中的一个错误,但我想确保我没有遗漏任何东西 - 所以,基本上,是否有人知道这是有意为之的行为还是错误,并且此外,在给定情况下使用 Word Interop 时,有什么合理的方法来处理它?<​​/p>

对于这种情况,我运行的是 Office 2010 和 Word Interop API 版本 14。

最佳答案

Word 使用值 999999 表示当前选择包含多个相应格式。

在您的示例中,超链接表示为包含突出显示的运行的 Word 字段(按 Alt-F9 切换代码 View )。重新打开文档后,该字段本身没有应用突出显示。这不一定是 Word 中的错误,只是(超链接)字段的行为不会记住字段级别的格式。

但是,您的实际任务似乎是从文档中删除突出显示的文本。这通常可以使用 Word 的 Range.Find 对象更好地完成:

range.Find.ClearFormatting();
range.Find.ClearAllFuzzyOptions();
range.Find.Highlight = 1;
range.Find.Replacement.ClearFormatting();
range.Find.Replacement.Text = "";
range.Find.Wrap = Word.WdFindWrap.wdFindContinue;
range.Find.Execute(Replace: Word.WdReplace.wdReplaceAll);

这是一个完整的示例程序,您可以使用它来删除突出显示:

using System;
using System.Linq;
using Word = Microsoft.Office.Interop.Word;


class Program
{
static void Main(string[] args)
{
var fileName = args[0];

var wordApp = new Word.Application();
wordApp.Visible = true;
var document = wordApp.Documents.Open(fileName);
RemoveHighlightingEverywhere(document);
}

static void RemoveHighlightingEverywhere(Word.Document document)
{
foreach (Word.Range storyRange in document.StoryRanges)
{
var range = storyRange;
while (range != null)
{
RemoveHighlightingFromRange(range);

if (range.ShapeRange.Count > 0)
{
foreach (Word.Shape shape in range.ShapeRange)
{
if (shape.TextFrame.HasText != 0)
{
RemoveHighlightingFromRange(
shape.TextFrame.TextRange);
}
}
}
range = range.NextStoryRange;
}
}
}

static void RemoveHighlightingFromRange(Word.Range range)
{
range.Find.ClearFormatting();
range.Find.ClearAllFuzzyOptions();
range.Find.Highlight = 1;
range.Find.Replacement.ClearFormatting();
range.Find.Replacement.Text = "";
range.Find.Wrap = Word.WdFindWrap.wdFindContinue;
range.Find.Execute(Replace: Word.WdReplace.wdReplaceAll);
}
}

关于ms-word - C# Word Interop - Range.HighlightColorIndex 返回 999999 - 这是有意的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13961776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com