Class

PDFSignature


Description

A control that provide a way for the user to sign the created PDF Document using a digital certificate.

Properties

Name

Type

Read-Only

Shared

Height

Integer

Name

String

Page

Integer

Width

Integer

X

Integer

Y

Integer

Methods

Name

Parameters

Returns

Shared

Constructor

pageNumber As Integer, x As Integer, y As Integer, width As Integer, height As Integer, controlName As String

Property descriptions


PDFSignature.Height

Height As Integer

The height of the signature control.


PDFSignature.Name

Name As String

The name of the signature control.


PDFSignature.Page

Page As Integer

The number of the page upon which the signature control appears.


PDFSignature.Width

Width As Integer

The width of the signature control.


PDFSignature.X

X As Integer

The horizontal location of the top left corner of the signature control.


PDFSignature.Y

Y As Integer

The vertical location of the top left corner of the signature control.

Method descriptions


PDFSignature.Constructor

Constructor(pageNumber As Integer, x As Integer, y As Integer, width As Integer, height As Integer, controlName As String)

Note

Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.

Creates an instance of the control with the values passed.

Sample code

This example adds a PDFSignature to an existing PDFDocument object stored in the variable pdfDoc:

Var signature As New PDFSignature(1, 100, 200, 300, "signature")
pdfDoc.AddControl(signature)

Compatibility

All project types on all supported operating systems.

See also

PDFControl parent class; PDFDocument class.