-
Notifications
You must be signed in to change notification settings - Fork 1
SharedAreaTemplate
Retrieves an Area Template resource stored in the Shared folder of the project.
SpecName (constant) The variable for assignment of the shared resource. Variable must be an Area Template type.
Source (multiple) The name of the resource to retrieve.
SharedPath (multiple) The shared path id provided by Four51.
ErrorMessage (multiple | optional) The error message to return when any error occurs.
This method allows an easier method of shared Area Template usage.
Four51 designates a variable named four51sharedpath that contains the location of the shared resources in the application environment. This path differs between environments such as the demo, beta and production environment. You can override this value locally for testing. Define the variable and in the job preview set the local file path value.
public static void SharedAreaTemplate(object SpecName, object Source, object SharedPath, object ErrorMessage)
{
Break();
try
{
Variable((string)SpecName).Value = SharedResource((string)SharedPath, (string)Name);
}
catch (Exception ex)
{
throw new Four51ActionsException(ex.Message, (string)ErrorMessage);
}
}