LocalReport.EnableExternalImages Property

 

Indicates whether the report can be rendered if it has external images.

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

Syntax

public bool EnableExternalImages { get; set; }
public:
property bool EnableExternalImages {
    bool get();
    void set(bool value);
}
member EnableExternalImages : bool with get, set
Public Property EnableExternalImages As Boolean

Property Value

Type: System.Boolean

A Boolean value. A value of true indicates that the local report can be rendered if it has external images. The default value is false.

Remarks

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

Important

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

See Also

LocalReport Class
Microsoft.Reporting.WinForms Namespace

Return to top