Provides access to members that controls a list of histograms.
Members
Name | Description | |
---|---|---|
Add | Adds a raster histogram. | |
Count | The raster histogram count. | |
Element | The raster histogram at the specified position. | |
Insert | Adds a raster histogram at the specified position. | |
Remove | Removes the raster histogram at the specified position. | |
RemoveAll | Removes all raster histograms. |
IRasterHistograms.Add Method
Adds a raster histogram.
Public Sub Add ( _
ByVal pHistogram As IRasterHistogram _
)
public void Add (
IRasterHistogram pHistogram
);
IRasterHistograms.Count Property
The raster histogram count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IRasterHistograms.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
);
IRasterHistograms.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
);
IRasterHistograms.Remove Method
Removes the raster histogram at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IRasterHistograms.RemoveAll Method
Removes all raster histograms.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IRasterHistograms
Classes | Description |
---|---|
RasterHistograms | An array of raster histograms. |