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

ExternalWorkbookCollection Interface

A collection of external workbooks.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public interface ExternalWorkbookCollection :
    ISimpleCollection<ExternalWorkbook>,
    IEnumerable<ExternalWorkbook>,
    IEnumerable,
    ICollection,
    ICollection<ExternalWorkbook>

The following members return ExternalWorkbookCollection objects:

#Remarks

The ExternalWorkbookCollection object is accessible by using the IWorkbook.ExternalWorkbooks property. The collection contains ExternalWorkbook objects.

To add an ExternalWorkbook to the collection, use the collection’s Add method. When a workbook is loaded in a collection of external workbooks, you can revise and update external references to that workbook contained in worksheets within a base workbook.

Subscribe to the ExternalWorkbook.SchemaChanged event to be notified when the external workbook structure changes (worksheets added/removed/renamed, defined names changed etc.).

See Also