Reports for WinForms | ComponentOne
C1.C1Report.CustomFields.4 Assembly / C1.C1Report.CustomFields Namespace / Gradient Class / Calculated Property

In This Topic
    Calculated Property (Gradient)
    In This Topic
    Specifies whether the Text property should be interpreted as a literal value or as a calculated expression.
    Syntax
    'Declaration
     
    Public Property Calculated As Boolean
    public bool Calculated {get; set;}
    Remarks

    If this property is set to false, the value of the Text property is rendered on the report without any further processing.

    If it is set to true, the value of the Text property is evaluated as a VBScript expression and the result of the expression is rendered on the report.

    Example
    The code below creates two fields. One displays the label "Sales Tax", the other displays the tax value by multiplying a database field ("Sales") by a constant.
    See Also