IDescTable Interface

Provides access to members that control a descriptor table.

Members

Name Description
Method AddColumn Adds a column to the descriptor table.
Read-only property BinFunction Pixel to Row tranlator.
Method DeleteColumn Deletes a column from the descriptor table.
Method FieldDesc Provides a description of the field.
Method FindField Finds a field in the descriptor table.
Read-only property NumFields Number of fields in the descriptor table.
Method ReadColumn Reads a column from the descriptor table.
Method ReadRow Returns a row from the the descriptor table.
Method ValueToIndex Converts pixel values to rows in the descriptor table.
Method WriteColumn Writes column to the descriptor table.
Method WriteRow Writes row of data to the descriptor table.

IDescTable.AddColumn Method

Adds a column to the descriptor table.

Public Sub AddColumn ( _
    ByVal col_index As Integer, _
    ByVal col As IDescColumn _
)
public void AddColumn (
    int col_index,
    IDescColumn col
);

IDescTable.BinFunction Property

Pixel to Row tranlator.

Public ReadOnly Property BinFunction As IBinFunction
public IBinFunction BinFunction {get;}

IDescTable.DeleteColumn Method

Deletes a column from the descriptor table.

Public Sub DeleteColumn ( _
    ByVal col_index As Integer _
)
public void DeleteColumn (
    int col_index
);

IDescTable.FieldDesc Method

Provides a description of the field.

Public Sub FieldDesc ( _
    ByVal Index As Integer, _
    ByRef Name As String, _
    ByRef Type As Int16&, _
    ByRef Width As Integer _
)
public void FieldDesc (
    int Index,
    ref string Name,
    ref Int16& Type,
    ref int Width
);

IDescTable.FindField Method

Finds a field in the descriptor table.

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

IDescTable.NumFields Property

Number of fields in the descriptor table.

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

IDescTable.ReadColumn Method

Reads a column from the descriptor table.

Public Function ReadColumn ( _
    ByVal col_index As Integer _
) As IDescColumn
public IDescColumn ReadColumn (
    int col_index
);

IDescTable.ReadRow Method

Returns a row from the the descriptor table.

Public Function ReadRow ( _
    ByVal row_index As Integer _
) As IDescRow
public IDescRow ReadRow (
    int row_index
);

IDescTable.ValueToIndex Method

Converts pixel values to rows in the descriptor table.

Public Function ValueToIndex ( _
    ByVal pixval As Double _
) As Integer
public int ValueToIndex (
    double pixval
);

IDescTable.WriteColumn Method

Writes column to the descriptor table.

Public Function WriteColumn ( _
    ByVal col_index As Integer _
) As IDescColumn
public IDescColumn WriteColumn (
    int col_index
);

IDescTable.WriteRow Method

Writes row of data to the descriptor table.

Public Sub WriteRow ( _
    ByVal row_index As Integer, _
    ByVal Row As IDescRow _
)
public void WriteRow (
    int row_index,
    IDescRow Row
);

Classes that implement IDescTable

Classes Description

Remarks

This interface is not intended to be used by outside developers.

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