IRasterStatisticsArray Interface

Provides access to members that controls an array of statistics.

Members

Name Description
Method Add Adds a raster statistics.
Read-only property Count The raster statistics count.
Read-only property Element The raster statistics at the specified position.
Method Insert Adds a raster statistics at the specified position.
Method Remove Removes the raster statistics at the specified position.
Method 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.

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