ActiveReports.Viewer3 Request technical support
Text Property
See Also  Example


Gets or sets the table of contents caption.

Syntax

Visual Basic (Declaration) 
Public Property Text As String
Visual Basic (Usage)Copy Code
Dim instance As TableOfContentsObject
Dim value As String
 
instance.Text = value
 
value = instance.Text
C# 
public string Text {get; set;}

Return Value

A text string caption of the table of contents tree.

Example

C#Copy Code
private void arv_Load(object sender, System.EventArgs e)
{
   rptDD rpt =
new rptDD();
   rpt.Run();
   arv.Document = rpt.Document;
   
   arv.TableOfContents.Enabled = true;
   arv.TableOfContents.Text =
"Country";
   arv.TableOfContents.Visible = true;
   arv.TableOfContents.Width = 150;
}
Visual BasicCopy Code
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document

    arv.TableOfContents.Enabled = True
    arv.TableOfContents.Text = "Country"
    arv.TableOfContents.Visible = True
    arv.TableOfContents.Width = 150
End Sub

See Also