[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Viewer.Win.Viewer.TableOfContentsClick

TableOfContentsClick Event

Occurs when the user clicks an item in the table of contents treeview.

Namespace: GrapeCity.ActiveReports.Viewer.Win
Assembly: MESCIUS.ActiveReports.Viewer.Win.dll
Syntax
public event EventHandler TableOfContentsClick
Returns
Type Description
EventHandler Occurs when the user clicks an item in the table of contents treeview.
Remarks

The event handler receives an EventArgs instance, which does not provide event data but indicates that the event has occurred.

Examples
// Subscribe to the TableOfContentsClick event
viewer.TableOfContentsClick += Viewer_TableOfContentsClick;
// Event handler for TableOfContentsClick
private void Viewer_TableOfContentsClick(object sender, EventArgs e)
{
	MessageBox.Show("The Table of Contents has been clicked.", "TOC Clicked");
}