Share via


ReportViewerStatus.CanChangeDisplayModes Property

 

Gets a Boolean value that indicates whether the ReportViewer control has not started processing the report or has completed processing the report, and can change the display mode without canceling a report processing operation.

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

Syntax

public bool CanChangeDisplayModes { get; }
public:
property bool CanChangeDisplayModes {
    bool get();
}
member CanChangeDisplayModes : bool with get
Public ReadOnly Property CanChangeDisplayModes As Boolean

Property Value

Type: System.Boolean

true if the ReportViewer control can change the display mode without canceling a report processing operation; otherwise, false.

Remarks

This property is true if the ReportViewer control is still generating pages for a processed report in PrintLayout mode, even though changing the mode will cancel that operation. This is because generating the report pages is a rendering operation and not a processing operation.

See Also

ReportViewerStatus Class
Microsoft.Reporting.WinForms Namespace

Return to top