VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf Namespace / PdfDocument Class / Save Methods / Save(Stream) Method
Syntax Remarks Requirements SeeAlso
In This Topic
    Save(Stream) Method (PdfDocument)
    In This Topic
    Saves the PDF document to stream.
    Syntax
    'Declaration
    
    Public Overloads Sub Save( _
    ByVal stream
    Stream to save PDF document.
    As System.IO.Stream _
    )
    public void Save(
    System.IO.Stream stream
    )
    public: void Save(
    System.IO.Stream* stream
    )
    public:
    void Save(
    System.IO.Stream^ stream
    )

    Parameters

    stream
    Stream to save PDF document.
    Remarks

    All further changes will affect the source of PDF document only.
    Method writes document at the beginning of stream and truncates stream according to written data.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also