GrapeCity.ActiveReports.Viewer.Win.v9 Assembly > GrapeCity.ActiveReports.Viewer.Win Namespace > Viewer Class : TableOfContents Property |
Gets or sets a reference to the TableOfContentsObject.
'Declaration Public ReadOnly Property TableOfContents As TocPanel
public TocPanel TableOfContents {get;}
This property is used in setting the option of TableOfContentsObject component of the control.
private void arv_Load(object sender, System.EventArgs e) { SectionReport1 rpt = new SectionReport1(); rpt.Run(); arv.Document = rpt.Document; arv.TableOfContents.Enabled = true; arv.TableOfContents.Text = "Country"; arv.TableOfContents.Visible = true; arv.TableOfContents.Width = 150; }
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load Dim rpt As New SectionReport1 rpt.Run() arv.Document = rpt.Document arv.TableOfContents.Enabled = True arv.TableOfContents.Text = "Country" arv.TableOfContents.Visible = True arv.TableOfContents.Width = 150 End Sub