Represents an outline on a worksheet.
For a list of all members of this type, see IOutline Members.
[Visual Basic] Public Interface IOutline [C#] public interface IOutline [C++] public __gc __interface IOutline [JScript] public interface IOutline
| Type | Description |
|---|
Use IWorksheet.Outline property to return an IOutline interface.
The following example demonstrates how to access outline properties.
[C#]
book.Worksheets[1].Outline.SummaryColumn = XlSummaryColumn.xlSummaryOnLeft;
book.Worksheets[1].Outline.SummaryRow = XlSummaryRow.xlSummaryAbove;
[Visual Basic]
book.Worksheets(1).Outline.SummaryColumn = XlSummaryColumn.xlSummaryOnLeft
book.Worksheets(1).Outline.SummaryRow = XlSummaryRow.xlSummaryAbove
[C++]
IWorksheet* sheet = book->Worksheets->Item[1];
sheet->Outline->SummaryColumn = XlSummaryColumn::xlSummaryOnLeft;
sheet->Outline->SummaryRow = XlSummaryRow::xlSummaryAbove;
Namespace: NativeExcel
Assembly: NativeExcel (in NativeExcel.dll)
IOutline Members | NativeExcel Namespace | IWorksheet.Outline | XlSummaryColumn Enumeration | XlSummaryRow Enumeration