ActiveReports Developer 7
ClickNavigateTo Property
See Also  Example
GrapeCity.ActiveReports.Web.v7 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)

See Also