ActiveReports3 Request technical support
HyperLink Property
See Also  Example


Gets or sets a URL address that can be used in the viewer's HyperLink event to navigate to the specified location.  The URL is automatically converted into an anchor tag or a hyperlink in HTML and PDF exports.

Syntax

Visual Basic (Declaration) 
Public Property HyperLink As String
Visual Basic (Usage)Copy Code
Dim instance As Picture
Dim value As String
 
instance.HyperLink = value
 
value = instance.HyperLink
C# 
public string HyperLink {get; set;}

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.picture1.HyperLink = "mailto:support@company.com";
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Picture1.HyperLink = "mailto:support@company.com"
End Sub

See Also