{description}
{excerpt}Returns the [Workbook|Worksheet.Workbook] object in which this worksheet resides.{excerpt}
{signature:C#}
 public Workbook Workbook{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Workbook() As Workbook
{signature}
{example}{code:csharp|title=C#}
Workbook wkbk = sheet.Worksheet;{code}
{code:vb.net|title=vb.net}
Dim wkbk as Workbook = sheet.Workbook{code}

{example}