Visual Basic (Declaration) | |
---|---|
Public Property HyperLink As System.String |
C# | |
---|---|
public System.string HyperLink {get; set;} |
Note: When using the HtmlViewer, the RawHtml, the Flash Viewer or the Silverlight Viewer to display a report, you should indicate the full URL address (for example, "http://www.grapecity.com") for this property.
C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.OleObject1.CreateFrom("C:\\MailAliases.xls"); this.OleObject1.HyperLink = "www.grapecity.com"; } |
Visual Basic | Copy Code |
---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.OleObject1.CreateFrom("C:\MailAliases.xls") Me.OleObject1.HyperLink = "www.grapecity.com" End Sub |