Skip to content

Four51.Actions.Variable

jdubs edited this page Oct 21, 2016 · 1 revision

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