Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Tools and Features
LocalReport Class
 EnableHyperlinks Property

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
 
LocalReport.EnableHyperlinks Property 

Indicates whether the report can be rendered if it contains hyperlink actions.

Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)

Visual Basic (Declaration)
Public Property EnableHyperlinks As Boolean
Visual Basic (Usage)
Dim instance As LocalReport
Dim value As Boolean

value = instance.EnableHyperlinks

instance.EnableHyperlinks = value
C#
public bool EnableHyperlinks { get; set; }
C++
public:
property bool EnableHyperlinks {
	bool get ();
	void set (bool value);
}
J#
/** @property */
public boolean get_EnableHyperlinks ()

/** @property */
public void set_EnableHyperlinks (boolean value)
JScript
public function get EnableHyperlinks () : boolean

public function set EnableHyperlinks (value : boolean)

Property Value

A Boolean value. A value of true indicates that the report can be rendered if it contains hyperlink actions. The default value is false.

If this property is set to false, then attempting to render a report that has external images will throw a ReportSecurityException.

NoteImportant

Local reports that contain hyperlinks are not allowed to execute by default. Setting this property to true will enable local reports with hyperlinks to execute. This can be a security risk. You should not enable this property on non-trusted reports.

© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker