Join

Join(Stream)

Joins the documents into one single document.

public void Join(Stream document)
Parameter Type Description
document Stream Joined document.

Exceptions

exception condition
ArgumentNullException Thrown when document is null.

Remarks

Learn more

See Also


Join(Stream, IJoinOptions)

Joins the documents into one single document.

public void Join(Stream document, IJoinOptions joinOptions)
Parameter Type Description
document Stream Joined document.
joinOptions IJoinOptions The join options.

Exceptions

exception condition
ArgumentNullException Thrown when document is null.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also


Join(Stream, IPageJoinOptions)

Joins the documents into one single document.

public void Join(Stream document, IPageJoinOptions joinOptions)
Parameter Type Description
document Stream Joined document.
joinOptions IPageJoinOptions The join options.

Exceptions

exception condition
ArgumentNullException Thrown when document is null.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also


Join(Stream, IImageJoinOptions)

Joins the documents into one single document.

public void Join(Stream document, IImageJoinOptions joinOptions)
Parameter Type Description
document Stream Joined document.
joinOptions IImageJoinOptions The image join options.

Exceptions

exception condition
ArgumentNullException Thrown when document is null.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also


Join(string)

Joins the documents into one single document.

public void Join(string filePath)
Parameter Type Description
filePath String File path of the joined document.

Exceptions

exception condition
ArgumentNullException Thrown when filePath is null or empty.

Remarks

Learn more

See Also


Join(string, IJoinOptions)

Joins the documents into one single document.

public void Join(string filePath, IJoinOptions joinOptions)
Parameter Type Description
filePath String File path of the joined document.
joinOptions IJoinOptions The join options.

Exceptions

exception condition
ArgumentNullException Thrown when filePath is null or empty.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also


Join(string, IPageJoinOptions)

Joins the documents into one single document.

public void Join(string filePath, IPageJoinOptions joinOptions)
Parameter Type Description
filePath String File path of the joined document.
joinOptions IPageJoinOptions The join options.

Exceptions

exception condition
ArgumentNullException Thrown when filePath is null or empty.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also


Join(string, IImageJoinOptions)

Joins the documents into one single document.

public void Join(string filePath, IImageJoinOptions joinOptions)
Parameter Type Description
filePath String File path of the joined document.
joinOptions IImageJoinOptions The image join options.

Exceptions

exception condition
ArgumentNullException Thrown when filePath is null or empty.
ArgumentNullException Thrown when joinOptions is null.

Remarks

Learn more

See Also