DataAdapters.Item Property

Gets a reference to the specified data adapter object from the DataAdaptersCollection collection, based on position or name.

Namespace:  Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly:  Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)

Syntax

'Declaration
ReadOnly Default Property Item ( _
    varIndex As Object _
) As Object
    Get
'Usage
Dim instance As DataAdapters
Dim varIndex As Object
Dim value As Object

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

Parameters

  • varIndex
    Type: System.Object

    An expression that specifies the position of a member of the DataAdaptersCollection collection. If the argument is a numeric expression, it must be a number from 0 to the value of the Count property minus 1. If the argument is a string expression, it must be the name of a member of the collection.

Property Value

Type: System.Object

Remarks

If the value provided for the varIndex argument does not match any existing member of the collection, an error occurs.

After you have set a reference to the DataSourceObject object that the Item property returns, you can access any of its properties or methods after the object has been cast to the appropriate DataObject object.

Important

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Examples

Because the Item property is the default property of the DataAdaptersCollection collection, it can be used after casting to the appropriate data adapter as follows:

EmailAdapterObject myEmailAdapter = ((EmailAdapterObject)thisXDocument.DataAdapters[3]);

See Also

Reference

DataAdapters Interface

DataAdapters Members

Microsoft.Office.Interop.InfoPath.SemiTrust Namespace