Provides access to members that control a descriptor table row.
Members
Name | Description | |
---|---|---|
FindField | The index of the desired field. | |
GetValue | The value of the ith entry in the row. | |
NumFields | Number of fields in the row. | |
PutValue | The value of the ith entry in the row. |
IDescRow.FindField Property
The index of the desired field.
Public Function get_FindField ( _
ByVal strtofind As String _
) As Integer
public int get_FindField (
string strtofind
);
IDescRow.GetValue Property
The value of the ith entry in the row.
Public Function get_GetValue ( _
ByVal Index As Integer _
) As Object
public object get_GetValue (
int Index
);
IDescRow.NumFields Property
Number of fields in the row.
Public ReadOnly Property NumFields As Integer
public int NumFields {get;}
IDescRow.PutValue Property
The value of the ith entry in the row.
Public Sub PutValue ( _
ByVal Index As Integer, _
ByRef pVal As Object _
)
public void PutValue (
int Index,
ref object pVal
);
Classes that implement IDescRow
Classes | Description |
---|
Remarks
This interface is not intended to be used by outside developers.