Share via


_Row.Item Property

Obtains an Object that represents the value for the Row object at the column specified by Index.

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
<DispIdAttribute()> _
ReadOnly Default Property Item ( _
    Index As Object _
) As Object
    Get
'Usage
Dim instance As _Row
Dim Index As Object
Dim value As Object

value = instance(Index)
[DispIdAttribute()]
Object this[
    Object Index
] { get; }

Parameters

  • Index
    Type: System.Object

    A 1-based index value that can be either an Integer (int in C#) value representing the column index for the Columns collection or a String (string in C#) representing the Name of the Column.

Property Value

Type: System.Object
An Object that represents the value of a property (as specified by Index) of an item (as specified by the parent Row).

Remarks

If a Column has been added to a Table using a property name referencing a namespace, you must reference the Column in the Row.Item property (this in C#) by the same namespace reference. If you use an explicit built-in name reference in Row.Item, you will get an error.

See Also

Reference

_Row Interface

_Row Members

Microsoft.Office.Interop.Outlook Namespace