SpreadsheetGear Namespace > IRange Interface : Cells Property (IRange) |
Returns the cells represented by this instance of IRange.
[Visual Basic]
Overridable ReadOnly Property Cells As IRange
[C#]
virtual IRange Cells {get;}
[C++]
__property virtual IRange* get_Cells();
[C#]
class Program
{
static void Main()
{
// Create a worksheet.
SpreadsheetGear.IWorksheet worksheet =
SpreadsheetGear.Factory.GetWorkbook().Worksheets["Sheet1"];
// Writes "6" (two columns by three rows).
System.Console.WriteLine(worksheet.Cells["B3:C5"].Count);
// Writes "2" (two columns).
System.Console.WriteLine(worksheet.Cells["B3:C5"].Columns.Count);
// Writes "6" (back to two columns by three rows).
System.Console.WriteLine(worksheet.Cells["B3:C5"].Columns.Cells.Count);
}
}
[Visual Basic]
Class Program
Shared Sub Main()
' Create a worksheet.
Dim worksheet As SpreadsheetGear.IWorksheet = SpreadsheetGear.Factory.GetWorkbook().Worksheets("Sheet1")
' Writes "6" (two columns by three rows).
System.Console.WriteLine(worksheet.Cells("B3:C5").Count)
' Writes "2" (two columns).
System.Console.WriteLine(worksheet.Cells("B3:C5").Columns.Count)
' Writes "6" (back to two columns by three rows).
System.Console.WriteLine(worksheet.Cells("B3:C5").Columns.Cells.Count)
End Sub 'Main
End Class 'Program
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
IRange Interface | IRange Members
See our live Excel Reporting, Excel Charting, Excel to DataGrid and Excel Calculation Samples.
Copyright © 2003-2007 SpreadsheetGear LLC. All Rights Reserved.
SpreadsheetGear and Spreadsheet Gear are trademarks of SpreadsheetGear LLC.