gpt4 book ai didi

c# - 当我尝试对 PowerPoint 2013 使用 UI 自动化时,我只能在使用 RangeFromPoint 时获取第一个字符/单词

转载 作者:太空狗 更新时间:2023-10-29 20:33:26 24 4
gpt4 key购买 nike

该代码适用于 Word 和 Outlook,但不适用于 PowerPoint,因为只有文本框的第一个字符或第一个单词被选中。这是一个错误吗?有什么解决方法吗?在 PowerPoint 2013 中的简单 PowerPoint 幻灯片上试试这个。

private static async Task<string> getText(double x, double y)
{
string result = null;

try
{
var location = new System.Windows.Point(x, y);
AutomationElement element = AutomationElement.FromPoint(location);

object patternObj;
if (element.TryGetCurrentPattern(TextPattern.Pattern, out patternObj))
{
var textPattern = (TextPattern)patternObj;

var range = textPattern.RangeFromPoint(location);
range.ExpandToEnclosingUnit(TextUnit.Word);
range.Select();

var text = range.GetText(-1).TrimEnd('\r');
return text.Trim();
}
else
{
return "no text found";
}
}
catch (Exception ex)
{
return ex.Message;
}
}

从截图上看不出来,但是鼠标是在“first”上而不是“stuck”,但是无论鼠标放在哪里,它总是卡住。也许这是在 PowerPoint 2016 中修复的?

enter image description here

当我查看范围的边界框时,它始终是整个元素,而不是所选单词。这可能是 RangeToPoint 无法正常工作的部分原因。

原文发表于MSDN但是没有反应...

更新。如果我使用

text = printRange(range, text);
while (range.Move(TextUnit.Word, 1) > 0)
{
text += Environment.NewLine;
text = printRange(range, text);
}

我明白了

enter image description here

最佳答案

此行为可能是由于 PowerPoint 2013 中的限制所致,我预计您无法使用 UIA 解决此问题。当您调用 RangeFromPoint() 时,UIA 提供程序点击鼠标下方(即实现 IUIAutomationTextPattern::RangeFromPoint() 的提供程序)旨在返回鼠标光标所在的退化(即空)范围。然后 UIA 客户端可以扩展返回的范围以获取周围的字符、单词、行或段落。

但是,正如您所指出的,PowerPoint 2013 并未这样做。我刚刚编写了下面的测试代码(使用由 tlbimp.exe 生成的 native Windows UIA API 的托管包装器),发现 PowerPoint 显然为光标下方的整个文本框返回了一个 TextRange。当我运行代码时,我发现我确实在写字板、Word 2013 和 PowerPoint OnLine 中得到了光标下方的预期单词,但在 PowerPoint 2013 中却没有。当我运行作为 Inspect SDK 一部分的文本资源管理器工具时,我得到了相同的结果工具。下图显示当鼠标悬停在其中一个单词上时,文本资源管理器报告从 PowerPoint 2013 返回的文本是文本框中的完整文本。

(我应该补充一点,下面的测试代码才能正常工作,我认为当前的显示缩放设置需要为 100%。我没有添加代码来说明其他一些缩放处于事件状态。)

我不知道 PowerPoint 2016 中是否已修复此问题,我会尝试调查并告知您。

谢谢,

家伙

enter image description here

private void buttonGetTheText_Click(object sender, EventArgs e)
{
labelText.Text = "No text found.";

IUIAutomation uiAutomation = new CUIAutomation8();

Point ptCursor = Cursor.Position;

tagPOINT pt;
pt.x = ptCursor.X;
pt.y = ptCursor.Y;

// Cache the Text pattern that's available through the element beneath
// the mouse cursor, (if the Text pattern's supported by the element,) in
// order to avoid another cross-process call to get the pattern later.
int patternIdText = 10014; // UIA_TextPatternId
IUIAutomationCacheRequest cacheRequestTextPattern =
uiAutomation.CreateCacheRequest();
cacheRequestTextPattern.AddPattern(patternIdText);

// Now get the element beneath the mouse.
IUIAutomationElement element =
uiAutomation.ElementFromPointBuildCache(pt, cacheRequestTextPattern);

// Does the element support the Text pattern?
IUIAutomationTextPattern textPattern =
element.GetCachedPattern(patternIdText);
if (textPattern != null)
{
// Now get the degenerative TextRange where the mouse is.
IUIAutomationTextRange range = textPattern.RangeFromPoint(pt);
if (range != null)
{
// Expand the range to include the word surrounding
// the point where the mouse is.
range.ExpandToEnclosingUnit(TextUnit.TextUnit_Word);

// Show the word in the test app.
labelText.Text = "Text is: \"" + range.GetText(256) + "\"";
}
}
}

关于c# - 当我尝试对 PowerPoint 2013 使用 UI 自动化时,我只能在使用 RangeFromPoint 时获取第一个字符/单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32540442/

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