[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.NameNode.Workbook

Workbook Property

Workbook

Gets or sets the external workbook reference.

This property stores the WorkbookReference associated with this NameNode when the name is qualified by an external workbook.

Declaration
public WorkbookReference Workbook { get; set; }
Public Property Workbook As WorkbookReference
Examples
NameNode nameNode = new NameNode("SalesTotal", "Sheet1", "Sheet3");
WorkbookReference workbookRef = WorkbookReference.FromName("Budget.xlsx");
nameNode.Workbook = workbookRef;
WorkbookReference workbookReference = nameNode.Workbook;