Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

IWorkbook Interface

Exposes the specific functionality of a workbook.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

public interface IWorkbook :
    ISpreadsheetComponent,
    IBatchUpdateable,
    IServiceContainer,
    IServiceProvider,
    ISupportsContentChanged,
    IPrintable,
    IBasePrintable,
    ExternalWorkbook,
    IDisposable

The following members return IWorkbook objects:

Library Related API Members
WinForms Controls SpreadsheetControl.Document
WPF Controls SpreadsheetControl.Document
Office File API ChartSheet.Workbook
IWorkbookMergeResult.Workbook
Worksheet.Workbook
ASP.NET Web Forms Controls ASPxSpreadsheet.Document
SpreadsheetExtension.GetCurrentDocument(String)
SpreadsheetInitializeDocumentEventArgs.Document

Remarks

The IWorkbook interface provides a comprehensive set of properties and methods required to manipulate the workbook (for example, to load, save and print workbooks, manage dependent objects such as Worksheet, Row, Column, Range and Cell, use formulas in cells, format cells, etc.)

An object that exposes the IWorkbook is the main spreadsheet document. It can be accessed using the SpreadsheetControl.Document property.

The Spreadsheet Document API allows creating an instance of the non-visual Workbook object that exposes the IWorkbook interface.

See Also