Skip to content

Variable

jdubs edited this page Oct 21, 2016 · 1 revision

Overview

Creates a reference to a Pageflex.Scripting.Variable object. The Variable object exposes a writable Value property.

Source Code

internal static Variable Variable(string var)
{
	try
	{
		return Application.GetVariable(var);
	}
	catch (Pageflex.Scripting.Exceptions.VariableNotFoundException ex)
	{
		throw new Four51ActionsException(ex.Message);
	}
}

Clone this wiki locally