ActiveReports Developer 7
Value Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Parameter Class : Value Property

Glossary Item Box

Gets or sets the value of the parameter to be used in parameter placeholder substitution.

Syntax

Visual Basic (Declaration) 
Public Property Value As System.String
C# 
public System.string Value {get; set;}

Property Value

A string value that is used to replace the parameter placeholder text in the report's data source SQL query.

Example

C#Copy Code
private void button1_Click(object sender, System.EventArgs e)
{
    SectionReport1 rpt = new SectionReport1();
    rpt.Parameters["country"].Value = "Germany";
    rpt.Run();
    arv.Document = rpt.Document;
}
Visual BasicCopy Code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim rpt As New SectionReport1
    rpt.Parameters("country").Value = "Germany"
    rpt.Run()
    arv.Document = rpt.Document
End Sub

See Also