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
'Declaration
Public Property Visible As Boolean
'Usage
Dim instance As ReportParameter
Dim value As Boolean
value = instance.Visible
instance.Visible = value
public bool Visible { get; set; }
public:
property bool Visible {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_Visible ()
/** @property */
public void set_Visible (boolean value)
public function get Visible () : boolean
public function set Visible (value : boolean)
Property Value
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:
The PromptAreaCollapsed property of the ReportViewer control must be false (this is the default value).
The ShowParameterPrompts must be true (this is the default value).
The PromptUser property is set to true.
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
Reference
ReportParameter Class
ReportParameter Members
Microsoft.Reporting.WinForms Namespace