Worksheet.Hidden プロパティにより、行の表示・非表示の状態を取得できます。

サンプル

// サンプルのエクセルファイル読み込み
string currentDir = Directory.GetCurrentDirectory();
string excelPath = Path.Combine(currentDir, "sample.xlsx");


// 1~10行目迄の表示・非表示を取得
Infragistics.Documents.Excel.Workbook workbook =
  Infragistics.Documents.Excel.Workbook.Load(excelPath);
Worksheet ws = workbook.Worksheets[0];
for (int i = 0; i < 10; i++)
{
    WorksheetRow row = ws.Rows[i];
    Debug.WriteLine(i + "行目 :" + row.Hidden);
}

リファレンス

HIdden プロパティ

https://jp.infragistics.com/help/winforms/infragistics.documents.excel~infragistics.documents.excel.rowcolumnbase~hidden

Tagged:

製品について

Ultimate UI for Windows Forms