ActiveReports.Viewer3 Request technical support
ContextMenu Property
See Also  Example


Gets or sets a context menu to use when the user right-clicks on the toolbar.

Syntax

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

Return Value

A ContextMenu value that represents the context menu to be used for the table of contents.

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.Visible = true;

   System.Windows.Forms.ContextMenu c =
new ContextMenu();
   c.MenuItems.Add(
"Hide table of contents");
   arv.TableOfContents.ContextMenu = c;
}
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.Visible = True

    Dim c As New System.Windows.Forms.ContextMenu
    c.MenuItems.Add("Hide table of contents")
    arv.TableOfContents.ContextMenu = c
End Sub

See Also