Provides access to members that controls an array of statistics.
Members
| Name | Description | |
|---|---|---|
![]()  | 
Add | Adds a raster statistics. | 
![]()  | 
Count | The raster statistics count. | 
![]()  | 
Element | The raster statistics at the specified position. | 
![]()  | 
Insert | Adds a raster statistics at the specified position. | 
![]()  | 
Remove | Removes the raster statistics at the specified position. | 
![]()  | 
RemoveAll | Removes all raster statistics. | 
IRasterStatisticsArray.Add Method
Adds a raster statistics.
Public Sub Add ( _
    ByVal pStatistics As IRasterStatistics _
)
public void Add (
    IRasterStatistics pStatistics
);
IRasterStatisticsArray.Count Property
The raster statistics count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IRasterStatisticsArray.Element Property
The raster statistics at the specified position.
Public Function get_Element ( _
    ByVal Index As Integer _
) As IRasterStatistics
public IRasterStatistics get_Element (
    int Index
);
IRasterStatisticsArray.Insert Method
Adds a raster statistics at the specified position.
Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pStatistics As IRasterStatistics _
)
public void Insert (
    int Index,
    IRasterStatistics pStatistics
);
IRasterStatisticsArray.Remove Method
Removes the raster statistics at the specified position.
Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);
IRasterStatisticsArray.RemoveAll Method
Removes all raster statistics.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IRasterStatisticsArray
| Classes | Description | 
|---|---|
| RasterStatisticsArray | An array of raster statistics. | 

