Performance Tag |
The root tag for the Performance XML tags. The Performance tags set the BarTender performance options.
<Performance>...</Performance>
The following child element tags are supported.
Tag |
Required/Optional |
Description |
---|---|---|
Optional |
Sets whether the printer will cache the format. |
|
Optional |
Sets whether the printer will cache the graphic. |
|
Optional |
Sets whether the printer will control serialization. |
|
Optional |
Sets whether the printer will allow the static graphics. |
|
Optional |
Sets whether the printer will allow static objects. |
|
Optional |
Sets whether the printer allows variable data optimization. |
|
Optional |
Sets whether the user will be notified that the format contains TrueType fonts. |
<Performance> is an optional tag that is used with the <Print>, <FormatSetup>, and <ExportPrintPreviewToImage> commands when the <PrintSetup> tag is included in the script.
<?xml version="1.0" encoding="utf-8"?>
<XMLScript Version="2.0" Name="09232006_103601_Job1" ID="123">
<Command Name="Job1">
<Print>
<Format>Label1.btw</Format>
<PrintSetup>
<Performance>
<AllowFormatCaching>true</AllowFormatCaching>
<AllowGraphicsCaching>true</AllowGraphicsCaching>
<AllowSerialization>true</AllowSerialization>
<AllowStaticGraphics>true</AllowStaticGraphics>
<AllowStaticObjects>true</AllowStaticObjects>
<AllowVariableDataOptimization>false</AllowVariableDataOptimization>
<WarnWhenUsingTrueTypeFonts>true</WarnWhenUsingTrueTypeFonts>
</Performance>
</PrintSetup>
</Print>
</Command>
</XMLScript>
BTXML Script version 1.0 (BarTender 8.0 and later versions)