• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Is there a way to add electronic signature fields into a PDF generated from a report using RDLC?

New Here ,
Jun 04, 2019 Jun 04, 2019

Copy link to clipboard

Copied

I am creating documents that need to be signed using Visual Studio and RDLC. Is there a way to add electronic signature fields into the generated PDF files programatically?

TOPICS
Create PDFs

Views

700

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jun 05, 2019 Jun 05, 2019

Copy link to clipboard

Copied

LATEST

Depends on what you have available at your disposal resource wise.   If you have Acrobat then yes, you could do this via JavaScript.  Here is a modified sample JavaScript from the Acrobat SDK to demonstrate how you might do it from the JavaScript Console.

var name = "mySignature";

var type = "signature";

var page = 0;

var location = [100, 472, 172, 400];

var myField = this.addField(name, type, page, location);

Now, "How are you going execute the sample script?" is the question.  

  • You can do this directly in Acrobat's JavaScript Console.
  • You can do this in an Action
  • You can do this as a button in the Add-Ons tool section of the Tools pane.
  • You can do this via IAC using the JSObject.

You may want to ask any further questions in the Acrobat SDK Forum.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines