-
Notifications
You must be signed in to change notification settings - Fork 1
Variable
jdubs edited this page Oct 21, 2016
·
1 revision
Creates a reference to a Pageflex.Scripting.Variable object. The Variable object exposes a writable Value property.
internal static Variable Variable(string var)
{
try
{
return Application.GetVariable(var);
}
catch (Pageflex.Scripting.Exceptions.VariableNotFoundException ex)
{
throw new Four51ActionsException(ex.Message);
}
}