Provides access to an array of RasterInfos.
Members
Name | Description | |
---|---|---|
Add | Adds a RasterInfo. | |
Count | The RasterInfo count. | |
Element | The RasterInfo at the specified position. | |
Insert | Adds a RasterInfo at the specified position. | |
Remove | Removes the RasterInfo at the specified position. | |
RemoveAll | Removes all RasterInfos. |
IRasterInfos.Add Method
Adds a RasterInfo.
Public Sub Add ( _
ByVal pRasterInfo As IRasterInfo _
)
public void Add (
IRasterInfo pRasterInfo
);
IRasterInfos.Count Property
The RasterInfo count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IRasterInfos.Element Property
The RasterInfo at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IRasterInfo
public IRasterInfo get_Element (
int Index
);
IRasterInfos.Insert Method
Adds a RasterInfo at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pRasterInfo As IRasterInfo _
)
public void Insert (
int Index,
IRasterInfo pRasterInfo
);
IRasterInfos.Remove Method
Removes the RasterInfo at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IRasterInfos.RemoveAll Method
Removes all RasterInfos.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IRasterInfos
Classes | Description |
---|---|
RasterInfos | An array of RasterInfo objects. |