Provides access to the properties of a list of raster type infos.
Members
Name | Description | |
---|---|---|
Add | Adds a raster type info. | |
Count | The raster type info count. | |
Element | The raster type info at the specified position. | |
Insert | Adds a raster type info at the specified position. | |
Remove | Removes the raster type info at the specified position. | |
RemoveAll | Removes all raster type infos. |
IRasterTypeInfos.Add Method
Adds a raster type info.
Public Sub Add ( _
ByVal pTypeInfo As IRasterTypeInfo _
)
public void Add (
IRasterTypeInfo pTypeInfo
);
IRasterTypeInfos.Count Property
The raster type info count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IRasterTypeInfos.Element Property
The raster type info at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IRasterTypeInfo
public IRasterTypeInfo get_Element (
int Index
);
IRasterTypeInfos.Insert Method
Adds a raster type info at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pTypeInfo As IRasterTypeInfo _
)
public void Insert (
int Index,
IRasterTypeInfo pTypeInfo
);
IRasterTypeInfos.Remove Method
Removes the raster type info at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IRasterTypeInfos.RemoveAll Method
Removes all raster type infos.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IRasterTypeInfos
Classes | Description |
---|---|
RasterTypeInfos | A collection of raster type info objects. |