ActiveReports 12
ClickNavigateTo Property
Example 

GrapeCity.ActiveReports.Web.v12 Assembly > GrapeCity.ActiveReports.Web.Controls Namespace > ToolButton Class : ClickNavigateTo Property
Gets or sets a string value that specifies a URL that the button opens in a new browser window.
Syntax
'Declaration
 
Public Property ClickNavigateTo As String
public string ClickNavigateTo {get; set;}

Property Value

A string URL.
Example
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);
Dim button As New GrapeCity.ActiveReports.Web.Controls.ToolButton()
button.ClickNavigateTo = "http://www.grapecity.com"
button.ToolTip = "Test tooltip"
WebViewer1.FlashViewerToolBar.Tools.Add(button)
See Also

Reference

ToolButton Class
ToolButton Members