IDescColumn Interface

Provides access to members that control a descriptor table column.

Members

Name Description
Read/write property Name Name of the descriptor table.
Method Read Read data from the descriptor table.
Method Type The type of the values in this column of the descriptor table.
Method ValueToIndex Converts pixel values to columns in the descriptor table.
Read-only property Width Width of the descriptor table.
Method Write Writes data to the descriptor table.

IDescColumn.Name Property

Name of the descriptor table.

Public Property Name As String
public string Name {get; set;}

IDescColumn.Read Method

Read data from the descriptor table.

Public Function Read ( _
    ByVal Start As Integer, _
    ByVal Count As Integer _
) As Object
public object Read (
    int Start,
    int Count
);

IDescColumn.Type Method

The type of the values in this column of the descriptor table.

Public Function Type ( _
) As Short
public short Type (
);

IDescColumn.ValueToIndex Method

Converts pixel values to columns in the descriptor table.

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

IDescColumn.Width Property

Width of the descriptor table.

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

IDescColumn.Write Method

Writes data to the descriptor table.

Public Sub Write ( _
    ByVal Start As Integer, _
    ByVal Count As Integer, _
    ByRef array As Object _
)
public void Write (
    int Start,
    int Count,
    ref object array
);

Classes that implement IDescColumn

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.