مشاركة عبر


DocumentBase.TablesOfFigures الخاصية

تحصل على TablesOfFiguresالمجموعة التي تمثل الجداول الرسوم التوضيحية في مستند.

مساحة الاسم:  Microsoft.Office.Tools.Word
التجميع:  Microsoft.Office.Tools.Word.v4.0.Utilities (في Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

بناء الجملة

'إقرار
Public ReadOnly Property TablesOfFigures As TablesOfFigures
    Get
public TablesOfFigures TablesOfFigures { get; }

قيمة الخاصية

النوع: Microsoft.Office.Interop.Word.TablesOfFigures
TablesOfFiguresمجموعة الذي يمثل جداول الرسوم التوضيحية في مستند.

أمثلة

يلي تعليمات برمجية في المثال إضافة جدول الرسوم التوضيحية عند يؤشر الإدراج في مستند النشط. يفترض هذا المثال أن مستند يحتوي على واحد أو المزيد التسميات التوضيحية الشكل. إلى لاستخدام هذا المثال، قم بتشغيلها من ThisDocumentالفئة في مشروع المستوى مستند.

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);
}

أمن NET Framework.

راجع أيضًَا

المرجع

DocumentBase الفئة

DocumentBase الأعضاء

Microsoft.Office.Tools.Word مساحة الاسم