Value Property

Pageflex Document Action API

Pageflex Document Action API Value Property
Namespaces > Pageflex.Scripting > Variable > Value
Gets or sets the current value of the variable.
Syntax
C# Visual Basic Managed C++
public string Value { get; set; }
Public Property Value As String
public:
String^ Value {
	String^ get ();
	void set (String^ value);
}
Remarks
Specifies a String representing the variable's current value.

Note that setting a variable's value does not cause other variables which depend on this variable's value to be automatically recomputed -- you must call EvaluateVariables(). Likewise, setting a variable's value does not cause the new value to be automatically propagated to associated variable elements -- you must call MergeData().

Exceptions
Exception Condition
VariableNotEvaluatedException The variable has not been evaluated, so it has no value.
InvalidVariableValueException .
ArgumentNullException The value supplied for value was nullNothingnullptr.

Assembly: PFScript Version: 8.0.7.1407 (Module: PFScript)