-
Notifications
You must be signed in to change notification settings - Fork 1
SharedTemplate
Retrieves a Template resource stored in the Shared folder of the project.
SpecName (constant) The variable for assignment of the shared resource. Variable must be an Variable Document type.
Name (multiple) The name of the resource to retrieve.
SharedPath (multiple) TThe shared path id provided by Four51. It must contain the shared resource unique ID, and the project sub folder of the resources you are retrieving.
ErrorMessage (multiple | optional) The error message to return when any error occurs.
This method allows an easier method of shared Variable Document 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 SharedTemplate(object SpecName, object Source, object SharedPath, object ErrorMessage)
{
Break();
try
{
Variable((string)SpecName).Value = SharedResource((string)SharedPath, (string)Source);
}
catch (Exception ex)
{
throw new Four51ActionsException(ex.Message, (string)ErrorMessage);
}
}