C# EPPlus OpenXML count rows

前端 未结 4 2022
时光取名叫无心
时光取名叫无心 2020-12-24 11:15

With EPPlus and OpenXML does anyone know the syntax on how to count the rows?

Say my worksheet is called \"worksheet\"

int numberRows = worksheet.rows.

4条回答
  •  粉色の甜心
    2020-12-24 11:51

    With a worksheet object called worksheet, worksheet.Dimension.Start.Row and worksheet.Dimension.End.Row should give you the information you need.

    worksheet.Dimension.Address will give you a string containing the worksheet dimensions in the traditional Excel range format (e.g. 'A1:I5' for rows 1-5, columns 1-9).

    There is a documentation file available. In many cases it might be just as quick to play around with the library and find the answer that way. EPPlus seems to be well designed - everything seems to be logically named, at least.

提交回复
热议问题