Propriedade Prompt
Gets or sets the text that prompts the user to provide parameter values.
Namespace: ReportExecution2005
Assembly: ReportExecution2005 (em ReportExecution2005.dll)
Sintaxe
'Declaração
Public Property Prompt As String
Get
Set
'Uso
Dim instance As ReportParameter
Dim value As String
value = instance.Prompt
instance.Prompt = value
public string Prompt { get; set; }
public:
property String^ Prompt {
String^ get ();
void set (String^ value);
}
member Prompt : string with get, set
function get Prompt () : String
function set Prompt (value : String)
Valor da propriedade
Tipo: System. . :: . .String
A String value containing the text that prompts the user to provide parameter values.
Comentários
The default value for the Prompt property is retrieved from the report definition when a report is first published to the report server database with the CreateReport method. If the report definition specifies an empty string, the user will not be prompted for a password unless one is supplied via code or URL access..
Consulte também