Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcPdfDocument Class / Sign Method / Sign(SignatureProperties,Stream,Boolean) Method
Properties of the signature used to sign the document.
The output stream (must support read and seek operations).
Indicates whether the document should be saved using incremental update.

In This Topic
    Sign(SignatureProperties,Stream,Boolean) Method
    In This Topic
    Signs and saves the current document to a file. Note that stream must support read and seek operations.
    Syntax
    'Declaration
     
    Public Overloads Sub Sign( _
       ByVal signatureProperties As SignatureProperties, _
       ByVal stream As System.IO.Stream, _
       ByVal incrementalUpdate As System.Boolean _
    ) 
    public void Sign( 
       SignatureProperties signatureProperties,
       System.IO.Stream stream,
       System.bool incrementalUpdate
    )

    Parameters

    signatureProperties
    Properties of the signature used to sign the document.
    stream
    The output stream (must support read and seek operations).
    incrementalUpdate
    Indicates whether the document should be saved using incremental update.
    See Also