Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WorkbookExtensions.Merge(IWorkbook, WorkbookMergeOptions, IWorkbook[]) Method

OBSOLETE

This API is now obsolete. Please use the 'void Append(params IWorkbook[] workbooks)' or 'Worbook Workbook.Merge(params IWorkbook[] workbooks)' methods.

Merges data from multiple workbooks into a single workbook.

You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this method in production code.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#Declaration

[Browsable(false)]
[Obsolete("This API is now obsolete. Please use the 'void Append(params IWorkbook[] workbooks)' or 'Worbook Workbook.Merge(params IWorkbook[] workbooks)' methods.", false)]
public static IWorkbookMergeResult Merge(
    this IWorkbook workbook,
    WorkbookMergeOptions options,
    params IWorkbook[] workbooks
)

#Parameters

Name Type Description
workbook IWorkbook

An object exposing the IWorkbook interface that specifies a workbook to be merged.

options WorkbookMergeOptions

A WorkbookMergeOptions object containing merge options.

workbooks IWorkbook[]

An array of IWorkbook objects that are workbooks that should be merged with a master workbook.

#Returns

Type Description
IWorkbookMergeResult

An object exposing the IWorkbookMergeResult interface that contains the result of a merge process.

See Also