Collection of
XLSheet objects that represent the individual worksheets in a
C1XLBook.
Use the
C1XLBookC1XLBook.Sheets property to get the book's sheet collection. For example, the code below gets a reference to the first sheet on the book and then prints the sheet's name:
C1XLBook book = new C1XLBook();
XLSheet sheet = book.Sheets[0];
Debug.WriteLine(sheet.Name);
System.Object
C1.Excel.XLSheetCollection