ActiveReports.Viewer6 Assembly > DataDynamics.ActiveReports.Viewer Namespace > TableOfContentsObject Class : ContextMenu Property |
'Declaration Public Property ContextMenu As ContextMenu
public ContextMenu ContextMenu {get; set;}
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; }
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
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