ReportParameter.Visible Property

 

Determines whether the parameter can be displayed in the user interface.

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

Syntax

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

Property Value

Type: System.Boolean

A Boolean value.

Remarks

The ReportViewer control may only display the parameter input user interface if the control's ProcessingMode property is set to Remote.

The following conditions must also be met for the parameter input area to be displayed:

If the ReportViewer control is set to Local mode, the host application must provide a user interface for accepting parameter values and passing these parameters to the report.

See Also

ReportParameter Class
Microsoft.Reporting.WinForms Namespace

Return to top