ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Variable Class / Value Property
Example

In This Topic
    Value Property (Variable)
    In This Topic
    Gets or sets a value of the variable.
    Syntax
    'Declaration
     
    Public Property Value As ExpressionInfo
    public ExpressionInfo Value {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object representing the value of the variable.
    Example
    Variable myVariable = new Variable();
    myVariable.Value = "=Sum(Sales)";
    See Also