FieldUseSignatureHandler Method |
Sets the signature handler to use for adding a signature to this field. If the signature handler is not found
in PDFDoc's signature handlers list, this field will not be signed. To add signature handlers, use PDFDoc.AddSignatureHandler
method.
If a signature handler is already assigned to this field and this method is called once again, the associated signature
handler for this field will be updated with the new handler.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj UseSignatureHandler(
ulong signatureHandlerId
)
Public Function UseSignatureHandler (
signatureHandlerId As ULong
) As Obj
public:
virtual Obj^ UseSignatureHandler(
[InAttribute] unsigned long long signatureHandlerId
) sealed
function UseSignatureHandler(signatureHandlerId);
Parameters
- signatureHandlerId
- Type: SystemUInt64
The unique id of the SignatureHandler to use for adding signature in this field.
Return Value
Type:
ObjThe signature dictionary created using the SignatureHandler, or NULL pointer if the signature handler is not found.
See Also