About this article
This article will explain what the proofing language setting is and provide examples of how it can be utilized with the binding syntax in smart templates.
- What is the proofing language setting?
- Limitations in PowerPoint
- How to set the proofing language setting in a smart template
- Proofing language examples
Prerequisites
|
What is the proofing language setting?
The proofing language sets the language for the Spelling and Grammar review feature from Office. The proofing language can be set statically or dynamically by utilizing the binding syntax.
|
|
Limitations in PowerPoint
|
How to set the proofing language setting in a smart template
When building the template settings and properties, the Proofing Language
setting can be utilized to set the language for the smart template. Setting the Proofing Language
setting can be achieved by following these steps:
- In the Template Designer, navigate to the
Advanced
tab - Click
Add property
- Select
Proofing Language
in theType
dropdown - Enter the required binding in
Language
- Optionally, set an additional option to the setting
Disable updates
: Disallow the setting from being updated after its generation when edited by the user through the document content updater. This option will not be visible if the document content updater is not enabled on the smart template.
- Click
Add to document
- The
Proofing language
setting will be added to the smart template
- The
|
Proofing language examples
Example 1
Using the Proofing Language
setting to always set the proofing language of the document to English(US).
Binding | en-US |
|
Example 2
Using the Proofing Language
setting to set the proofing language of the document based on the DocumentLanguage
field originating from the user profile.
Binding | {{UserProfile.DocumentLanguage.Language}} | |
Input | UserProfile.DocumentLanguage.Language = "de-DE" | UserProfile.DocumentLanguage.Language = "da-DK" |
Output | German (Germany) | Danish (Denmark) |
|
|
Example 3
Using the Proofing Language
setting to set the proofing language of the document based on the "Language" dropdown question originating from the response form.
Binding | {{Form.Language.Language}} | |
Input | Form.Language.Language = "de-DE" | Form.Language.Language = "da-DK" |
Output | English (United Kingdom) | English (United States) |
Comments
Article is closed for comments.