...
Attributname | Beschreibung |
---|---|
| Vordefinierter Text, den der Benutzer bearbeiten kann. |
...
FormattedText
FormattedText erlaubt das Einfügen von formatiertem Text. FormattedText ist sowohl ein Typ von Globalen Übersetzungen als auch eine Art Textbausteine.
Damit ist es möglich, abhängig von Profildaten oder selektierten Daten in Forms, unterschiedlich formatierte Textpassagen in einem Inhaltssteuerelement im Dokument auszugeben. Oft genutzt wird das beispielsweise in Kopf- und Fusszeilen, weil dort oft fette und nicht-fette Styles in einem Inhaltssteuerelement zum Zuge kommen.
Attribute fürFormattedText
Es gibt es keine weiteren Attribute. Die Dynamisierung von Inhalt und Daten wird im Code
-Element mit JavaScript und software-eigenen Funktionen ermöglicht. Die Dokumentation dazu folgt.
Code Block | ||
---|---|---|
| ||
<FieldsConfiguration>
<Fields>
<!-- FormattedText als globale Übersetzung holen -->
<FormattedText Name="EnclosuresTitle">
<Code>$.translations.getFormattedText("FormattedTexts.EnclosuresTitle")</Code>
</FormattedText>
<!-- FormattedText als Textbaustein holen -->
<FormattedText Name="EnclosuresBox">
<Code>$.snippets.getFormattedText("FormattedTexts.EnclosuresTitle")</Code>
</FormattedText>
</Fields>
</FieldsConfiguration> |
...
WordContent
Das Field vom Typ WordContent erlaubt das dynamische Einfügen von mehreren Textabschnitten in eine Vorlage. Zusammen mit der Dokumentfunktion Forms können so komplexere Vorlagen umgesetzt oder mehrere Vorlagen in eine konsolidiert werden.
Code Block | ||
---|---|---|
| ||
<FieldsConfiguration>
<Fields>
<WordContent Name="Introduction">
<Code>$.snippets.getWordContent("Introduction")</Code>
</WordContent>
</Fields>
</FieldsConfiguration> |
Attribute fürWordContent
Es gibt es keine weiteren Attribute. Das Einfügen von WordContent wird im Code
-Element mit JavaScript und software-eigenen Funktionen ermöglicht. Die Dokumentation dazu folgt.
...
Date
Code Block | ||
---|---|---|
| ||
<FieldsConfiguration> <Fields> <Date Name="CreateDate"> <Code>$("Forms.Date").Value</Code> </>Date> </Fields> </FieldsConfiguration> |
Attribute fürDate
Keine Es gibt es keine weiteren Attribute.
...
YesNo
Code Block | ||
---|---|---|
| ||
<FieldsConfiguration> <Fields> <YesNo Name="InsertPartnerLogo" Value="true" /> </Fields> </FieldsConfiguration> |
...
Code Block | ||
---|---|---|
| ||
<FieldsConfiguration> <Fields> <!-- Platzhalter befüllen vom Layout --> <Picture Name="PartnerLogo" Asset="\\e123\User\Muster\BeispielLogo.PNG" /> <Text Name="Page" Value="Seite" /> <!-- FormattedText holen --> <FormattedText Name="Title"> <Code>$.translations.getFormattedText("FormattedTexts.FormattedTitle")</Code> </FormattedText> <!-- Daten nurim inInhalt der InhaltsvorlageVorlage --> <Text Name="Greeting" translate-Value="Greetings.KindRegards1" /> <!-- Globaler Eintrag referenzieren --> <GlobalFields Key="Letters.Subject" /> <!-- WordContent-Textbaustein holen --> <WordContent Name="Introduction"> <Code>$.snippets.getWordContent("Introduction")</Code> </WordContent> </Fields> </FieldsConfiguration> |
...