Word VBA - 删除特定段落中的形状

时间:2012-04-03 09:33:04

标签: vba ms-word

我正在尝试删除之前搜索过的特定章节中的图片。 有人能指出我这样做的正确方法...... 这是我到目前为止编写的代码。

    If insideparagraph Then

        'error is here
        Dim o As Word.InlineShape
        For Each o In DocPara.Range
        o.Delete
        Next

    End If

1 个答案:

答案 0 :(得分:0)

您可能需要调整并测试此

If insideparagraph Then

    Dim o As Word.InlineShape
    For Each o In DocPara.Range.InlineShapes
    o.Delete
    Next

End If