[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.OutlineColumn

OutlineColumn Property

OutlineColumn

Gets the outline column for the worksheet.

The outline column displays hierarchical row data in a tree view. Use the returned IOutlineColumn object to configure the column index and display options for the row hierarchy.

Declaration
IOutlineColumn OutlineColumn { get; }
ReadOnly Property OutlineColumn As IOutlineColumn
Examples
worksheet.Range["A1:A3"].Value = new object[,] {{"Name"}, {"Node 1"}, {"Node 1.1"}};
worksheet.Range["A2"].IndentLevel = 1;
IOutlineColumn outlineColumn = worksheet.OutlineColumn;
outlineColumn.ColumnIndex = 0;