SpreadsheetGear 2023
EntireRow Property (IRange)
Example 


SpreadsheetGear Namespace > IRange Interface : EntireRow Property
Returns a new instance of IRange which represents the same range of cells, but expanded to include all columns.
Syntax
'Declaration
 
ReadOnly Property EntireRow As IRange
'Usage
 
Dim instance As IRange
Dim value As IRange
 
value = instance.EntireRow
IRange EntireRow {get;}
Example
IRange rows = worksheet.Cells["A1:B3"].EntireRow; // 'rows' represents A1:IV3
Dim rows As IRange = worksheet.Cells("A1:B3").EntireRow ' 'rows' represents A1:IV3
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IRange Interface
IRange Members