Reputation: 41
In the end of the document, I want to show a checkbox with a prepopulated text, something like: [ ] By checking, I've read the whole document and agree to sign.
Upvotes: 0
Views: 55
Reputation: 2065
Use a 'text' (old documentation, new documentation, expand the text menu at the bottom) to display your text.
In C#, it would look like this :
Text myText = new Text
{
Value = "By checking, I\'ve read the whole document and agree to sign.",
DocumentId = "123",
PageNumber = "1"
};
Upvotes: 1