Loads text in a certain format from a file, a byte array or a string and appends it to the existing document.
Introduced: 14.0.
public void Append(string path, StreamType streamType, AppendSettings appendSettings);
Public Sub Append(ByVal path As String, ByVal streamType As StreamType, ByVal appendSettings As AppendSettings)
public void Append(System.IO.FileStream fileStream, StreamType streamType, AppendSettings appendSettings);
Public Sub Append(ByVal fileStream As System.IO.FileStream, ByVal streamType As StreamType, ByVal appendSettings As AppendSettings)
public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, AppendSettings appendSettings);
Public Sub Append(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal appendSettings As AppendSettings)
public void Append(string stringData, StringStreamType stringStreamType, AppendSettings appendSettings);
Public Sub Append(ByVal stringData As String, ByVal stringStreamType As StringStreamType, ByVal appendSettings As AppendSettings)
public void Append(string path, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);
Public Sub Append(ByVal path As String, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
public void Append(System.IO.FileStream fileStream, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);
Public Sub Append(ByVal fileStream As System.IO.FileStream, ByVal streamType As StreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);
Public Sub Append(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal loadSettings As LoadSettings)
public void Append(string stringData, StringStreamType stringStreamType, LoadSettings loadSettings, AppendSettings appendSettings);
Public Sub Append(ByVal stringData As String, ByVal stringStreamType As StringStreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings)
Parameter | Description |
---|---|
append |
Specifies settings how the document is appended. It can be one of the Append |
stream |
Specifies one of the Stream |
path | Specifies a file from which the data is loaded. |
file |
Specifies a file from which the data is loaded. The data is loaded from the stream's current position. |
binary |
Specifies a byte array from which the data is loaded. |
string |
Specifies a string from which the data is loaded. |
binary |
Specifies one of the Binary |
string |
Specifies one of the String |
load |
Specifies a Load |