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(AppendSettings)

public DialogResult Append(AppendSettings appendSettings);
Public Function Append(ByVal appendSettings As AppendSettings) As DialogResult

Append(StreamType, AppendSettings)

public DialogResult Append(StreamType streamType, AppendSettings appendSettings);
Public Function Append(ByVal streamType As StreamType, ByVal appendSettings As AppendSettings) As DialogResult

Append(String, StreamType, AppendSettings)

public void Append(string path, StreamType streamType, AppendSettings appendSettings);
Public Sub Append(ByVal path As String, ByVal streamType As StreamType, ByVal appendSettings As AppendSettings)

Append(System.IO.FileStream, StreamType, 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)

Append(Byte[], BinaryStreamType, 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)

Append(String, StringStreamType, 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)

Append(StreamType, LoadSettings, AppendSettings)

public DialogResult Append(StreamType streamType, LoadSettings loadSettings, AppendSettings appendSettings);
Public Function Append(ByVal streamType As StreamType, ByVal loadSettings As LoadSettings, ByVal appendSettings As AppendSettings) As DialogResult

Append(String, StreamType, LoadSettings, 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)

Append(System.IO.FileStream, StreamType, LoadSettings, 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)

Append(Byte[], BinaryStreamType, LoadSettings)

public void Append(byte[] binaryData, BinaryStreamType binaryStreamType, LoadSettings loadSettings);
Public Sub Append(ByVal binaryData As Byte(), ByVal binaryStreamType As BinaryStreamType, ByVal loadSettings As LoadSettings)

Append(String, StringStreamType, LoadSettings, AppendSettings)

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)

Parameters

Parameter Description
appendSettings Specifies settings on 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.

Return Value

The implementations that open a dialog box return the dialog's result value.