Report.IsReadyForRendering Property

Gets a Boolean value that indicates whether a report definition and all parameters have been specified, and all data sources are ready for use.

Namespace: Microsoft.Reporting.WebForms
Assembly: Microsoft.ReportViewer.WebForms (in microsoft.reportviewer.webforms.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property IsReadyForRendering As Boolean
'Usage
Dim instance As Report
Dim value As Boolean

value = instance.IsReadyForRendering
[BrowsableAttribute(false)] 
public bool IsReadyForRendering { get; }
[BrowsableAttribute(false)] 
public:
property bool IsReadyForRendering {
    bool get ();
}
/** @property */
public boolean get_IsReadyForRendering ()
public function get IsReadyForRendering () : boolean

Property Value

true if a report definition and all required parameters have been specified, and all data sources are ready for use; otherwise, false. The default is false.

Remarks

In remote processing mode, all prompt data source credentials must be specified for this property to be true. In local processing mode, all required datasets must be loaded for this property to be true.

This property does not indicate that all information specified is valid, but only that the Report object has sufficient information to attempt to render the report. For example, it returns true if the prompt data source credentials have been specified but are not valid.

See Also

Reference

Report Class
Report Members
Microsoft.Reporting.WebForms Namespace