PDFDocSaveCustomSignature Method (Byte, DigitalSignatureField, String) |
Saves all changes to the document and writes them to an output IFilter sink without using the
saved document as the new source.
Saves a custom signature Contents to a document which has been prepared to receive it. No changes should be made to document in meantime.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SaveCustomSignature(
byte[] in_signature,
DigitalSignatureField in_field,
string in_path
)
Public Sub SaveCustomSignature (
in_signature As Byte(),
in_field As DigitalSignatureField,
in_path As String
)
public:
virtual void SaveCustomSignature(
[InAttribute] array<unsigned char>^ in_signature,
[InAttribute] DigitalSignatureField^ in_field,
[InAttribute] String^ in_path
) sealed
function SaveCustomSignature(in_signature, in_field, in_path);
Parameters
- in_signature
- Type: SystemByte
The signature Contents to write - in_field
- Type: pdftron.PDFDigitalSignatureField
The signature field to which to write - in_path
- Type: SystemString
The full path name to which the file is saved.
Return Value
Type:
An object that is used to manage the asynchronous operation.
Remarks
Saving will lock the document for the duration of the save.
The save options can be combined using bitwise OR operations.
A full save with remove unused or linearization option may re-arrange object in the cross reference
table. Therefore all pointers and references to document objects and resources should be re-acquired in
order to continue document editing.
See Also