[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.Workbook

Workbook Property

Workbook

Gets or sets the external workbook reference.

Use this property to retrieve or update the workbook component of an external reference, such as a reference that points to a worksheet in another workbook. The default value is null.

Declaration
public WorkbookReference Workbook { get; set; }
Public Property Workbook As WorkbookReference
Examples
Reference reference = new Reference();
reference.Workbook = WorkbookReference.FromName("Book1");
WorkbookReference workbookReference = reference.Workbook;