ActiveReports 8
ClickNavigateTo Property
See Also  Example
GrapeCity.ActiveReports.Web.v8 Assembly > GrapeCity.ActiveReports.Web.Controls Namespace > ToolButton Class : ClickNavigateTo Property

Glossary Item Box

Gets or sets a string value that specifies a URL that the button opens in a new browser window.

Syntax

Visual Basic (Declaration) 
Public Property ClickNavigateTo As System.String
C# 
public System.string ClickNavigateTo {get; set;}

Property Value

A string URL.

Example

C#Copy Code
GrapeCity.ActiveReports.Web.Controls.ToolButton button = new GrapeCity.ActiveReports.Web.Controls.ToolButton();
button.ClickNavigateTo = "http://www.grapecity.com";
button.ToolTip = "Test tooltip";
WebViewer1.FlashViewerToolBar.Tools.Add(button);
Visual BasicCopy Code
Dim button As New GrapeCity.ActiveReports.Web.Controls.ToolButton()
button.ClickNavigateTo = "http://www.grapecity.com"
button.ToolTip = "Test tooltip"
WebViewer1.FlashViewerToolBar.Tools.Add(button)

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