SpreadsheetGear 2017
EntireColumn Property (IRange)
Example 






SpreadsheetGear Namespace > IRange Interface : EntireColumn Property
Returns a new instance of IRange which represents the same range of cells, but expanded to include all rows.
Syntax
'Declaration
 
ReadOnly Property EntireColumn As IRange
'Usage
 
Dim instance As IRange
Dim value As IRange
 
value = instance.EntireColumn
IRange EntireColumn {get;}
read-only property EntireColumn: IRange; 
function get EntireColumn : IRange
__property IRange* get_EntireColumn();
property IRange^ EntireColumn {
   IRange^ get();
}
Example
IRange cols = worksheet.Cells["A1:B3"].EntireColumn; // 'cols' represents A:B
Dim cols As IRange = worksheet.Cells("A1:B3").EntireColumn ' 'cols' represents A:B
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
EntireRow Property