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

    Parameters

    stream
    Stream to save PDF document.
    Remarks

    All further changes will affect specified stream 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