TableSection (Object)

Member of:

Sections collection

Description:

Represents a Results or Table section object within a document.

Example:

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

MyResults = ActiveDocument.Sections["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), ExportToStream([optional] Filename as String, [optional] FileFormat as BqExportFileFormat, [optional] IncludeHeaders as Boolean, [optional] DataStreaming as Boolean, [optional] Prompt as Boolean), GetCell(nRow As Number, nCol As Number) As Value, PrintOut([optional] FromPage As Number, [optional] ToPage As Number, [optional][Copies As Number, [optional] Filename As String, [optional] Prompt As Boolean), Recalculate(), Remove()

Properties:

Read-only: Property Active As Boolean, Property LastPrinted as Date, Property RowCount As Number, Property Type As BqSectionType

Read-write: Property BackgroundAlternateColor as BqColorType, Property BackgroundAlternateFrequency as Number, Property BackgroundColor as BqColorType, Property BackgroundShow AlternateColor as Boolean, Property BorderColor as BqColorType, Property BorderWidth as Number, Property CSSExport as Boolean, Property ExportWithoutQuotes as Boolean, Property HTMLExportBreakRowCount as Number, Property HTMLVerticalPageBreakEnabled as Boolean, Property HTMLVerticalPageBreakUnits as BqHTMLPageBreakUnits, Property Name As String, Property ShowOutliner as Boolean, Property ShowRowNumbers As Boolean, Property ShowSortLine as Boolean, Property Visible As Boolean

Collections:

UserValues as UserValues, Limits As Limits, Columns As Columns, SortItems as SortItems

Objects:

ParentSection