[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IOutline

Interface IOutline

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents an outline on a worksheet.

public interface IOutline

Properties

ColumnGroupInfo

Gets information about all groups in the column direction.

List<IGroupInfo> ColumnGroupInfo { get; }

Property Value

System.Collections.Generic.List<T><IGroupInfo>

RowGroupInfo

Gets information about all groups in the row direction.

List<IGroupInfo> RowGroupInfo { get; }

Property Value

System.Collections.Generic.List<T><IGroupInfo>

SummaryColumn

Gets or sets the location of the summary columns in the outline.

SummaryColumn SummaryColumn { get; set; }

Property Value

SummaryColumn

SummaryRow

Gets or sets the location of the summary rows in the outline.

SummaryRow SummaryRow { get; set; }

Property Value

SummaryRow

Methods

ShowLevels(int, int)

Displays the specified number of row and column levels of an outline.

void ShowLevels(int rowLevels = 0, int columnLevels = 0)

Parameters

rowLevels int

Optional Object. Specifies the number of row levels of an outline to display. If the outline has fewer levels than the number specified, it displays all the levels. If this argument is 0 (zero) or is omitted, no action is taken on rows.

columnLevels int

Optional Object. Specifies the number of column levels of an outline to display. If the outline has fewer levels than the number specified, it displays all the levels. If this argument is 0 (zero) or is omitted, no action is taken on columns.