Propriedade ReportParameter.Visible
Determines whether the parameter can be displayed in the user interface.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (em Microsoft.ReportViewer.WinForms.dll)
Sintaxe
'Declaração
Public Property Visible As Boolean
public bool Visible { get; set; }
public:
property bool Visible {
bool get ();
void set (bool value);
}
member Visible : bool with get, set
function get Visible () : boolean
function set Visible (value : boolean)
Valor de propriedade
Tipo: Boolean
A Boolean value.
Comentários
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.