ITableFields Interface

Provides access to members that return information about a table.

Members

Name Description
Read-only property Field The field at the given index.
Read-only property FieldCount The field count.
Read-only property FieldInfo The extended field information for the field at the given index.
Method FindField The index of the field with the given name.

ITableFields.Field Property

The field at the given index.

Public Function get_Field ( _
    ByVal Index As Integer _
) As IField
public IField get_Field (
    int Index
);

ITableFields.FieldCount Property

The field count.

Public ReadOnly Property FieldCount As Integer
public int FieldCount {get;}

ITableFields.FieldInfo Property

The extended field information for the field at the given index.

Public Function get_FieldInfo ( _
    ByVal Index As Integer _
) As IFieldInfo
public IFieldInfo get_FieldInfo (
    int Index
);

ITableFields.FindField Method

The index of the field with the given name.

Public Function FindField ( _
    ByVal FieldName As String _
) As Integer
public int FindField (
    string FieldName
);

Classes that implement ITableFields

Classes Description

Remarks

You can use the ITableFields interface to return the field count and to get particular fields.

The FieldInfo property provides extended information on the field; it returns an IFieldInfo reference.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.