0

我正在为 Word 2010 编写 VSTO。我想检查 msoGroup 形状中的形状,但未能获得组中的形状。这是我的尝试:

public void TestGroupShapes_Action(Microsoft.Office.Core.IRibbonControl control)
{
    Microsoft.Office.Interop.Word.Document doc = Globals.ThisAddIn.Application.ActiveDocument;

    foreach(Microsoft.Office.Interop.Word.Shape shape in doc.Shapes)
    {
        if (shape.Type == Microsoft.Office.Core.MsoShapeType.msoGroup)
        {
            /*
            // System.InvalidCastException:
            // Cannot convert System.__ComObject to Microsoft.Office.Interop.Word.Shape”
            foreach (Shape groupShape in shape.GroupItems)
            {
                Console.WriteLine(groupShape.Name);
            }
            */

            for(int i=0; i<shape.GroupItems.Count; i++)
            {
                // System.ArgumentException: Cannot use the index in the assembly.
                Microsoft.Office.Interop.Word.Shape groupShape = shape.GroupItems[i];
                Console.WriteLine(groupShape.Name);
            }
        }
    }
}

如何解决问题?

4

1 回答 1

0

GroupItems的第一项从索引 1 而不是 0 开始。这就是你得到的原因

System.ArgumentException:无法使用程序集中的索引

例外。

为了遍历集合,请使用以下代码:

for (int i = 1; i <= shape.GroupItems.Count; i++)
{                       
    Microsoft.Office.Interop.Word.Shape groupShape = shape.GroupItems[i];
    
    // do something
}
于 2020-08-07T08:52:30.007 回答