ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / CalculatedField Class / Expression Property






In This Topic
    Expression Property (CalculatedField)
    In This Topic
    Gets or sets the expression which is used to calculates field value. The expression may refer to the current item via the context variable '$', which contains the item's original and calculated values.
    Syntax
    'Declaration
     
    
    Public Property Expression As System.String
    'Usage
     
    
    Dim instance As CalculatedField
    Dim value As System.String
     
    instance.Expression = value
     
    value = instance.Expression
    public System.string Expression {get; set;}
    public read-write property Expression: System.String; 
    public function get,set Expression : System.String
    public: __property System.string* get_Expression();
    public: __property void set_Expression( 
       System.string* value
    );
    public:
    property System.String^ Expression {
       System.String^ get();
       void set (    System.String^ value);
    }
    See Also