Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagec#
themeConfluence
titleAddSignature
linenumberstrue
// Set Zoom for Sign in Document Mode and enable it with SetSignDocMode
SignAPIv4.SetLcdSignZoom(0, 280, 0, 0);
SignAPIv4.SetSignDocMode(100, 100, 250, 200, 1);
 
/* Alternative way to place the Signature Rectangle
	SignAPIv4.SetLcdSignZoom(3, 0, 20, 50);           //  place signature 2cm from left and 5cm from bottom
	SignAPIv4.SetLcdSignZoom(2, 0, 15050, 0);           //  width of 15cm5cm
*/
 
// Next step is to start Signing
 
string padSettings = "";
bool Capturing = SigDev.startCapture("", true, true, true, true, ref ps);

...