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