[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Viewer.Win.Viewer.TableOfContents

TableOfContents Property

TableOfContents

Gets the Table of Contents panel within the viewer's sidebar.

Declaration
[Browsable(false)]
public TocPanel TableOfContents { get; }
Property Value
Type Description
TocPanel

A TocPanel instance that represents the Table of Contents panel.

Remarks

The Table of Contents panel provides a structured overview of the document, allowing users to navigate to different sections easily.

Examples
// Assuming 'viewer' is your Viewer control instance
var toc = viewer.TableOfContents;
toc.Visible = true;
toc.Text = "Table of Contents";