Saves the complete contents of a document with the specified format.
public void SaveText(string path, Web.StreamType streamType);
Public Sub SaveText(ByVal path As String, ByVal streamType As 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)
public void SaveText(out byte[] binaryData, Web.BinaryStreamType binaryStreamType);
Public Sub SaveText(ByRef binaryData As Byte(), ByVal binaryStreamType As Web.BinaryStreamType)
public void SaveText(out string stringData, Web.StringStreamType stringStreamType);
Public Sub SaveText(ByRef stringData As String, ByVal stringStreamType As Web.StringStreamType)
Parameter | Description |
---|---|
stream |
Specifies one of the Stream |
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. |
file |
Specifies a file into which the data is saved. The data is saved at the stream's current position. |
binary |
Specifies a byte array into which the data is saved. No memory needs to be allocated through the caller. |
string |
Specifies a string into which the data is saved. No memory needs to be allocated through the caller. |
binary |
Specifies one of the Binary |
string |
Specifies one of the String |