Sub Tag | Description | Possible Values |
<VarData FileName=" "/> | Contains the file path to the .txt or .csv file with the data points for Variable Data. | File Paths e.g. C:\Data\VariableData.txt |
<HotFile>
<Job Name="Variable Data Job">
<Image VardataTemplate="SportsJerseyTemplate">
<VarData FileName="C:\Sports_Jersey\jersey.txt"/>
</Image>
</Job>
</HotFile> |
Sub Tag | Description |
<VarData></VarData> | Enclosing Tag for the data segment, comes at the very beginning and the very end of defining the datapoints for variable data. |
| <VDHeader></VDHeader> | Enclosing tag for the header section. <VDHeader> contains the names of the variable fields in the Variable Data Template and tells the HotFolder which fields you want to address and where to place each datapoint. |
| <VDField></VDField> | Each VDField tag contains one name for a variable field in the Variable Data Template to let the HotFolder know which fields to fill. |
| <VDRow></VDRow> | Enclosing tag for the Variable Data sets. Each <VDRow> tag represents one dataset, i.e. one complete image generated by variable data. One <VDRow> tag corresponds to one line in a Variable Data .txt file. |
| <VDValue></VDValue> | Contains the individual datapoints for the Variable Data Template. Note that the <VDValue> tags need to go in the same order as the <VDField> tags in <VDHeader>, e.g. if the first <VDField> is “Order number”, the first <VDField> tag will need to be the order number so it goes into the correct variable field. |
<HotFile>
<Job Name="Variable Data Job">
<Image VardataTemplate="SportsJerseyTemplate">
<VarData>
<VDHeader>
<VDField>PlayerNumber</VDField>
<VDField>PlayerName</VDField>
<VDField>FrontLogo</VDField>
</VDHeader>
<VDRow>
<VDValue>10</VDValue>
<VDValue>Taylor</VDValue>
<VDValue>C:\Sports_Jersey\eagle_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>33</VDValue>
<VDValue>Bundy</VDValue>
<VDValue>C:\Sports_Jersey\rhino_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>17</VDValue>
<VDValue>Winslow</VDValue>
<VDValue>C:\Sports_Jersey\eagle_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>55</VDValue>
<VDValue>Banks</VDValue>
<VDValue>C:\Sports_Jersey\rhino_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>76</VDValue>
<VDValue>Lambert</VDValue>
<VDValue>C:\Sports_Jersey\eagle_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>24</VDValue>
<VDValue>Simpson</VDValue>
<VDValue>C:\Sports_Jersey\rhino_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>29</VDValue>
<VDValue>Conner</VDValue>
<VDValue>C:\Sports_Jersey\eagle_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>15</VDValue>
<VDValue>Tanner</VDValue>
<VDValue>C:\Sports_Jersey\rhino_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>83</VDValue>
<VDValue>Griffin</VDValue>
<VDValue>C:\Sports_Jersey\eagle_logo.png</VDValue>
</VDRow>
<VDRow>
<VDValue>42</VDValue>
<VDValue>Wilkerson</VDValue>
<VDValue>C:\Sports_Jersey\rhino_logo.png</VDValue>
</VDRow>
</VarData>
</Image>
</Job>
</HotFile> |
Sub Tag | Description | Possible Values |
<VarSet></VarSet> | Sets the data points to be used for Variable Data. First line should be line headings, same as in a Variable Data .txt file, each following line represents one dataset. Entries are tab separated. | E.g. Text1 SampleText |
<HotFile>
<Job>
<Image VardataTemplate="TemplateName">
<VarSet>
Text1 Text2 Text3
Text1 for Image1 Text2 for Image1 Text3 for Image1
Text1 for Image2 Text2 for Image2 Text3 for Image2
</VarSet>
<Scale Mode="HEIGHT">100</Scale>
</Image>
</Job>
</HotFile> |