OpenXmlPartRootElement.Save Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Save() |
Saves the data in the DOM tree back to the part. This method can be called multiple times and each time it is called, the stream will be flushed. |
Save(Stream) |
Saves the DOM tree to the specified stream. |
Save()
Saves the data in the DOM tree back to the part. This method can be called multiple times and each time it is called, the stream will be flushed.
public void Save ();
member this.Save : unit -> unit
Public Sub Save ()
Exceptions
Thrown when the tree is not associated with a part.
Remarks
Call this method explicitly to save the changes in the DOM tree.
Applies to
Save(Stream)
Saves the DOM tree to the specified stream.
public void Save (System.IO.Stream stream);
member this.Save : System.IO.Stream -> unit
Public Sub Save (stream As Stream)
Parameters
- stream
- Stream
The stream to which to save the XML.