Reply to: Language Settings on User level within the package
Monday, February 1, 2016 at 07:59am
0
votes
Unfortunately, it's not currently possible to set different languages for each user through the SDK. You can only set the language for the entire package. Here's how you would edit your DocumentPackage block:
final Locale LANGUAGE = Locale.FRENCH;
DocumentPackage superDuperPackage = newPackageNamed( "PackageLanguageConfigurationExample: " + new SimpleDateFormat( "HH:mm:ss" ).format( new Date() ) )
.describedAs("This is a package created using the eSignLive SDK")
.withLanguage(LANGUAGE)
.withSigner(newSignerWithEmail("[email protected]")
.withFirstName("John")
.withLastName("Smith")
.withTitle("Managing Director")
.withCompany("Acme Inc."))
.withDocument(newDocumentWithName("First Document")
.fromFile("DOC_FILE_PATH")
.withSignature(signatureFor("[email protected]")
.onPage(0)
.atPosition(100, 100)))
.build();
Reply to: Language Settings on User level within the package
Monday, February 1, 2016 at 07:35amReply to: Language Settings on User level within the package
Monday, February 1, 2016 at 07:38amReply to: Language Settings on User level within the package
Monday, February 1, 2016 at 07:59am