Table (Object)

Member of:

Shapes (Collection)

Description:

Represents an embedded Results or Table section object within the Shapes collection .

Example:

This example shows how to print the names of all the columns to the Console window.

MyResults = ActiveDocument.Sections["Dashboard"].Shapes["Results"]
ColumnCount = MyResults.Columns.Count
for (I=1;I<= ColumnCount;I++)
Console.Write("Column#"+I+":"+MyResults.Columns[I].Name+"\r\n")

Methods:

Activate(), Copy(), Duplicate(), Export([optional] Filename As String, [optional] FileFormat As BqExportFileFormat [optional], IncludeHeaders As Boolean, [optional] Prompt As Boolean), GetCell(nRow As Number, nCol As Number) As Value, PrintOut([optional] FromPage As Number], [ToPage As Number], [Copies As Number], [Filename As String], [Prompt As Boolean]), Recalculate(), Remove()

Properties:

Read-only: Property Active As Boolean, Property Name as String, Property RowCount As Number, Property RowNumber as Number, Property Type As BqSectionType

Read write: Property Alignment as BqHorizontalAlignment, Property ScrollbarsAlwaysShown as Boolean, Property ShowOutliner as Boolean, Property ShowRowNumbers as Boolean, Property Text as String, Property VerticalAlignment as BqVerticalAlignment, Property Visible as Boolean

Collections:

Limits as Limits, Columns As Columns, SortItems as SortItems, TableSection as Object