IRasterHistogramArray Interface

Provides access to members that controls an array of histograms.

Members

Name Description
Method Add Adds a raster histogram.
Read-only property Count The raster histogram count.
Read-only property Element The raster histogram at the specified position.
Method Insert Adds a raster histogram at the specified position.
Method Remove Removes the raster histogram at the specified position.
Method RemoveAll Removes all raster histograms.

IRasterHistogramArray.Add Method

Adds a raster histogram.

Public Sub Add ( _
    ByVal pHistogram As IRasterHistogram _
)
public void Add (
    IRasterHistogram pHistogram
);

IRasterHistogramArray.Count Property

The raster histogram count.

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

IRasterHistogramArray.Element Property

The raster histogram at the specified position.

Public Function get_Element ( _
    ByVal Index As Integer _
) As IRasterHistogram
public IRasterHistogram get_Element (
    int Index
);

IRasterHistogramArray.Insert Method

Adds a raster histogram at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pHistogram As IRasterHistogram _
)
public void Insert (
    int Index,
    IRasterHistogram pHistogram
);

IRasterHistogramArray.Remove Method

Removes the raster histogram at the specified position.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

IRasterHistogramArray.RemoveAll Method

Removes all raster histograms.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

Classes that implement IRasterHistogramArray

Classes Description
RasterHistogramArray An array of raster histograms.

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