TExcelFile.GetRowHidden Method
Overloads
TExcelFile.GetRowHidden(Integer)
Returns true if the row is hidden.
Syntax
Unit: FlexCel.Core
function TExcelFile.GetRowHidden(const row: Integer): Boolean; overload; virtual; abstract;
Parameters
| <-> | 
Parameter | 
Type | 
Description | 
| const | 
row | 
Integer | 
Row index (1 based). | 
 
Returns
True if the row is hidden.
See also
TExcelFile.GetRowHidden(Integer, Integer)
Returns true if the row is hidden. This method does not care about ActiveSheet.
Syntax
Unit: FlexCel.Core
function TExcelFile.GetRowHidden(const sheet: Integer; const row: Integer): Boolean; overload; virtual; abstract;
Parameters
| <-> | 
Parameter | 
Type | 
Description | 
| const | 
sheet | 
Integer | 
Sheet index (1 based) for the row. | 
| const | 
row | 
Integer | 
Row index (1 based). | 
 
Returns
True if the row is hidden.
See also