The Document Actions assembly DLL is added by a Studio designer to a Template Project folder:
Example: A1_Poster\Document Actions\ResizeDocument.dll
They can then configure a Job to call the methods.
The method ResizeHeightWidth(height, width) accepts two arguments:
height - the desired height in millimetres, e.g. “297”width - the desired width in millimetres, e.g. “210”It is allowed to specify the size with the maximum of three decimal places, e.g. “297.000”
The method ResizeDimensions(dimensions) accepts a single text argument:
dimensionsThe desired height and width separated by a comma or space character, e.g. “297,210” or “297 210”. A maximum of three decimal places is allowed: “297.000, 210.000”