Represents a collection of
XLRow objects that represent the individual rows in each
XLSheet.
Note that you can create rows automatically by using the sheet's indexer. For example, the following code retrieves the cell at coordinates (3,3) and in doing so automatically creates four rows and four columns automatically:
C1XLBook book = new C1XLBook();
sheet = book.Sheets[0];
XLCell cell = sheet[3,3]; // creates 4 rows and 4 columns
System.Object
C1.Excel.XLRowCollection