Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Diese Dokumentfunktion wird benötigt, um in der Vorlage auf die Daten aus dem Profil zuzugreifen. Die Profildaten beinhalten alle Daten, die in den Einstellungen unter "Organisationseinheit" und "Benutzer" definiert und ausgefüllt wurden. Bei Bildern ist zu beachten, dass jedes Bild in der Profildaten-Konfiguration einzeln angegeben werden muss. In der Dokumentfunktion hat es im auskommentierten Bereich einige Beispiele der gängigsten Bilder-Konfigurationen.

Eine Ausnahme bilden die Signaturbilder. Diese müssen nicht einzeln angegeben werden. Um auf diese zuzugreifen, muss in der Zeile IncludeSignatures das Attribut withImage auf "true" gesetzt werden. In derselben Zeile kann auch definiert werden, wie viele Signaturen bzw. wieviele Signer in die Vorlage eingefüllt werden können.

StandardkonfigurationThis document function is required to access the data from the profile within the template. The profile data contains all the data that has been defined and filled in in the settings in "Organizational unit" and "User". For images, note that each image must be specified individually in the profile data configuration. In the document function, it has some examples of the most common images configurations in the commented out area.

The signature images are an exception. These do not have to be specified individually. To access them, the attribute withImage must be set to "true" in the IncludeSignatures line. In the same line it can also be defined how many signatures or how many signers can be filled into the template.

Default configuration

Code Block
languagexml
<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
  <IncludeSignatures withImage="false">0</IncludeSignatures>
  <IncludeImages>
    
    <!-- BilderInsert hierimages einfügenhere -->
    
  </IncludeImages>
</Configuration>
<!--
Images Bildercan könnenonly nurbe imapplied Dokumentin angewendetthe werden,document wennif siethey explizitare inexplicitly derspecified Listein obenthe angegebenlist sindabove.
BeispieleExamples:
    <Image id="User.Sign" />
    <Image id="User.ProfileImage" />
    <Image id="Org.Logo" />
-->

...