ActiveReports 6 Online Help
ContextMenu Property (ReportViewerObject)
Example 

Gets or sets a context menu to use when the user right-clicks on the report viewer component.
Syntax
'Declaration
 
Public Property ContextMenu As ContextMenu
public ContextMenu ContextMenu {get; set;}

Property Value

A ContextMenu value that represents the context menu to be used for the report viewer component.
Example
System.Windows.Forms.ContextMenu c = new ContextMenu();
c.MenuItems.Add("Copy");
arv.ReportViewer.ContextMenu = c;
Dim c As New System.Windows.Forms.ContextMenu
c.MenuItems.Add("Copy")
arv.ReportViewer.ContextMenu = c
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ReportViewerObject Class
ReportViewerObject Members

Send Feedback