Propriedade DocumentBase.TablesOfFigures

Obtém uma coleção de TablesOfFigures que representa as tabelas de figuras no documento.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (em Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Sintaxe

'Declaração
Public ReadOnly Property TablesOfFigures As TablesOfFigures
public TablesOfFigures TablesOfFigures { get; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Word.TablesOfFigures
Uma coleção de TablesOfFigures que representa as tabelas de figuras no documento.

Exemplos

O exemplo de código a seguir adiciona uma tabela de figuras no ponto de inserção no documento ativo.Este exemplo assume que o documento tem um ou mais a figura legendas.Para usar este exemplo, ele execução da classe de ThisDocument em um projeto de um documento nível.

Private Sub DocumentTablesOfFigures()
    Dim Caption As Object = Word.WdCaptionLabelID.wdCaptionFigure
    Me.TablesOfFigures.Add(Me.Application.Selection.Range, Caption)
End Sub 
private void DocumentTablesOfFigures()
{
    object Caption = Word.WdCaptionLabelID.wdCaptionFigure;
    this.TablesOfFigures.Add(this.Application.Selection.Range,
        ref Caption, ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing, ref missing);
}

Segurança do .NET Framework

Consulte também

Referência

DocumentBase Classe

Namespace Microsoft.Office.Tools.Word