[]
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.
public WorkbookReference Workbook { get; set; }
Public Property Workbook As WorkbookReference
NameNode nameNode = new NameNode("SalesTotal", "Sheet1", "Sheet3");
WorkbookReference workbookRef = WorkbookReference.FromName("Budget.xlsx");
nameNode.Workbook = workbookRef;
WorkbookReference workbookReference = nameNode.Workbook;