DocumentBase.InlineShapes 属性

获取一个 InlineShapes 集合,该集合表示文档中的所有 InlineShape 对象。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property InlineShapes As InlineShapes
public InlineShapes InlineShapes { get; }

属性值

类型:Microsoft.Office.Interop.Word.InlineShapes
一个 InlineShapes 集合,表示文档中的所有 InlineShape 对象。

示例

下面的代码示例向该文档添加嵌入式形状(水平线),然后显示一个包含嵌入式形状数目的消息框。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentInlineShapes()
    Dim myRange As Object = Me.Paragraphs(1).Range
    Me.InlineShapes.AddHorizontalLineStandard(myRange)
    MessageBox.Show("Total inline shapes: " & Me.InlineShapes.Count.ToString())
End Sub
private void DocumentInlineShapes()
{
    object myRange = this.Paragraphs[1].Range;
    this.InlineShapes.AddHorizontalLineStandard(ref myRange);
    MessageBox.Show("Total inline shapes: " +
        this.InlineShapes.Count.ToString());
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间