Saves the complete contents of a document with the specified format.

SaveText(String, Web.StreamType)

public void SaveText(string path,  Web.StreamType streamType);
Public Sub SaveText(ByVal path As String, ByVal streamType As  Web.StreamType)

SaveText(System.IO.FileStream, Web.StreamType)

public void SaveText(System.IO.FileStream fileStream,  Web.StreamType streamType);
Public Sub SaveText(ByVal fileStream As System.IO.FileStream, ByVal streamType As  Web.StreamType)

SaveText(Out, Web.BinaryStreamType)

public void SaveText(out byte[] binaryData, Web.BinaryStreamType binaryStreamType);
Public Sub SaveText(ByRef binaryData As Byte(), ByVal binaryStreamType As Web.BinaryStreamType)

SaveText(Out, Web.StringStreamType)

public void SaveText(out string stringData, Web.StringStreamType stringStreamType);
Public Sub SaveText(ByRef stringData As String, ByVal stringStreamType As Web.StringStreamType)

Parameters

Parameter Description
streamType Specifies one of the StreamType values.
path Specifies a file into which the data is saved. If the file does not exist it is created. If the file exists its contents are overwritten.
fileStream Specifies a file into which the data is saved. The data is saved at the stream's current position.
binaryData Specifies a byte array into which the data is saved. No memory needs to be allocated through the caller.
stringData Specifies a string into which the data is saved. No memory needs to be allocated through the caller.
binaryStreamType Specifies one of the BinaryStreamType values.
stringStreamType Specifies one of the StringStreamType values.