PdfSignatureMaker
MakeSignature Method (String, PdfPageBase, Single, Single, Single, Single, IPdfSignatureAppearance)
|
Make signature.
Namespace:
Spire.Pdf.Interactive.DigitalSignatures
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public void MakeSignature(
string sigFieldName,
PdfPageBase page,
float x,
float y,
float width,
float height,
IPdfSignatureAppearance signatureAppearance
)
Public Sub MakeSignature (
sigFieldName As String,
page As PdfPageBase,
x As Single,
y As Single,
width As Single,
height As Single,
signatureAppearance As IPdfSignatureAppearance
)
public:
void MakeSignature(
String^ sigFieldName,
PdfPageBase^ page,
float x,
float y,
float width,
float height,
IPdfSignatureAppearance^ signatureAppearance
)
member MakeSignature :
sigFieldName : string *
page : PdfPageBase *
x : float32 *
y : float32 *
width : float32 *
height : float32 *
signatureAppearance : IPdfSignatureAppearance -> unit
Parameters
-
sigFieldName
-
Type:
System
String
The signature filed name.
-
page
-
Type:
Spire.Pdf
PdfPageBase
The page index.
-
x
-
Type:
System
Single
The x position of the annotation on the page.
-
y
-
Type:
System
Single
The y position of the annotation on the page.
-
width
-
Type:
System
Single
The width of the annotation on the page.
-
height
-
Type:
System
Single
The height of the annotation on the page.
-
signatureAppearance
-
Type:
Spire.Pdf.Interactive.DigitalSignatures
IPdfSignatureAppearance
Implement a custom signature appearance.
See Also