NativeExcel for .Net Developer's Reference

IRangeColumn.Item Property

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

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

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

[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

row
The one-based index number of the cell

Property Value

Returns an IRange interface.

See Also

IRangeColumn Interface | NativeExcel Namespace | IRangeColumns.Item Property