Forums     Knowledge Base     OfficeWriter Online     
 
This documentation is for
OfficeWriter v3.0.4
.NET Platform

View Docs for Another
Version or Platform

Programmer's Reference > ExcelApplication API > Area > Item

Item Property


C# Signature:

VB.NET Signature:


Description:

Returns a cell within the specified area of cells.

Item is a read only property.



Examples:

[csharp]
Cell c = ar[5,5];
[vbnet]
Dim c As Cell = ar(5, 5)


Getter

Signature:

public Cell Item

Parameters:

int row The cell's 0-based row number, relative to the first cell in the area. For example, for the area B4:D7, area[0,0] will return cell B4.
int col The cell's 0-based column number, relative to the first cell in the area. For example, for the area B4:D7, area[0,0] will return cell B4.

Returns:

Cell A Cell object representing the cell. If the cell is not within the specified area, an exception will be thrown.



Copyright 2005 © SoftArtisans, Inc. All Rights Reserved.