NativeExcel for .Net Developer's Reference

IRangeRow.Item Property

Returns an IRange interface that represents a single cell by using column index number.

[C#] In C#, this property is the indexer for the IRangeRow class.

[Visual Basic]
Default Property ReadOnly Item( _ 
   ByVal col As Integer _ 
) As IRange
[C#]
IRange this[
   int col
] { get; }
[C++]
__property IRange* get_Item(
   int col
);
[JScript]
returnValue = IRangeRowObject.Item( col );
-or-
returnValue = IRangeRowObject( col );

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

Parameters

col
The one-based index number of the cell

Property Value

Returns an IRange interface.

See Also

IRangeRow Interface | NativeExcel Namespace | IRangeRows.Item Property