About this article
Document properties are data that sit on top of the document, also known as metadata. Document properties are often used for archiving purposes in Document Management Systems(DMS) such as SharePoint. These values can be set statically(using plain text) or dynamically using the binding syntax. There is a standard set of document properties and custom document properties. Custom document properties are used for properties that aren't covered in the standard set. Often times, this would be specialized metadata that is needed for a DMS system such as versioning, randomized ID numbers etc. Templafy itself uses custom document properties for internal functionality.
Pre-requisites
|
How to setting custom document properties?
- Open Templafy task pane in your Office application
- Go to the ellipsis menu in the task pane and click on
Dynamics Designer
- Go to the
Document
tab - Select
Custom document properties
- Click the
+
button
During testing of the document, the custom document properties can be checked under File -> Info -> Properties -> Advanced Properties -> Custom.
Example 1
Setting a "Stage" custom document property as "Draft" statically.
Input | "Draft" | ||
Output | "Stage" custom document property = "Draft" |
Example 2
Setting a "Stage" custom document property using a dropdown form field from the user.
Binding |
{{Form.Stage.Name}} |
||
Input | Form.Stage.Name = "Draft" | Form.Stage.Name = "Final" | |
Output | "Stage" custom document property = "Draft" | "Stage" custom document property = "Final" |
Example 3
Setting a "Location" custom document property using a form field from the user profile.
Binding |
{{UserProfile.Location}} |
||
Input | "Copenhagen" | "Sydney" | |
Output | "Location" custom document property = "Copenhagen" | "Location" custom document property = "Sydney" |
Comments
0 comments
Article is closed for comments.