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.

Append(String, StreamType, AppendSettings)

public void Append(string path, StreamType streamType, AppendSettings appendSettings);

Append(System.IO.FileStream, StreamType, AppendSettings)

public void Append(System.IO.FileStream fileStream, StreamType streamType, AppendSettings appendSettings);

Append(Byte[], BinaryStreamType, AppendSettings)

public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, AppendSettings appendSettings);

Append(String, StringStreamType, AppendSettings)

public void Append(string stringData, StringStreamType stringStreamType, AppendSettings appendSettings);

Append(String, StreamType, LoadSettings, AppendSettings)

public void Append(string path, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);

Append(System.IO.FileStream, StreamType, LoadSettings, AppendSettings)

public void Append(System.IO.FileStream fileStream, StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);

Append(Byte[], BinaryStreamType, LoadSettings)

public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);

Append(String, StringStreamType, LoadSettings, AppendSettings)

public void Append(string stringData, StringStreamType stringStreamType, LoadSettings loadSettings, AppendSettings appendSettings);

Parameters

Parameter Description
appendSettings Specifies settings how the document is appended. It can be one of the AppendSettings values.
streamType Specifies one of the StreamType values.
path Specifies a file from which the data is loaded.
fileStream Specifies a file from which the data is loaded. The data is loaded from the stream's current position.
binaryData Specifies a byte array from which the data is loaded.
stringData Specifies a string from which the data is loaded.
binaryStreamType Specifies one of the BinaryStreamType values.
stringStreamType Specifies one of the StringStreamType values.
loadSettings Specifies a LoadSettings object with additional information and settings for the load operation.