[]
Gets the Workbook that contains this worksheet.
Use this property to access workbook-level settings, collections, and operations from the current worksheet.
IWorkbook Workbook { get; }
ReadOnly Property Workbook As IWorkbook
worksheet.Range["A1"].Value = "Name";
IWorkbook workbook = worksheet.Workbook;
workbook.Worksheets.Add();