Gets or sets the field's calculated value.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[BrowsableAttribute(false)]
public Object Value { get; set; }
Visual Basic
<BrowsableAttribute(False)> _
Public Property Value As Object
	Get
	Set

Remarks

When a field's Calculated property is set to true, the control evaluates the expression stored in the Text property and stores the result in the Value property, which gets rendered into the report.

This is the field's default property, so when you use a field name in a VBScript expression, you are actually referring to the field's Value property.

See Also