SeanL
SeanL

Reputation: 41

How to set the text of a checkbox

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

Answers (1)

Frederic
Frederic

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

Related Questions