Provides access to members that control a raster filter collection.
Members
Name | Description | |
---|---|---|
Append | Appends a raster filter to the end. | |
Empty | Empties this raster filter collection. | |
FilterCount | The number of filters in this collection. | |
Find | Finds a given raster filter and returns its index position. | |
Get | Gets the raster filter at a given index position. | |
Insert | Inserts a raster filter at a given index. | |
Remove | Removes a raster filter at a given index. | |
Set | Sets the raster filter at a given index position. |
IPixelFilterCollection.Append Method
Appends a raster filter to the end.
Public Sub Append ( _
ByVal pFilter As IPixelFilter _
)
public void Append (
IPixelFilter pFilter
);
IPixelFilterCollection.Empty Method
Empties this raster filter collection.
Public Sub Empty ( _
)
public void Empty (
);
IPixelFilterCollection.FilterCount Property
The number of filters in this collection.
Public ReadOnly Property FilterCount As Integer
public int FilterCount {get;}
IPixelFilterCollection.Find Method
Finds a given raster filter and returns its index position.
Public Function Find ( _
ByVal pFilter As IPixelFilter _
) As Integer
public int Find (
IPixelFilter pFilter
);
IPixelFilterCollection.Get Method
Gets the raster filter at a given index position.
Public Function Get ( _
ByVal Index As Integer _
) As IPixelFilter
public IPixelFilter Get (
int Index
);
IPixelFilterCollection.Insert Method
Inserts a raster filter at a given index.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pFilter As IPixelFilter _
)
public void Insert (
int Index,
IPixelFilter pFilter
);
IPixelFilterCollection.Remove Method
Removes a raster filter at a given index.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IPixelFilterCollection.Set Method
Sets the raster filter at a given index position.
Public Sub Set ( _
ByVal Index As Integer, _
ByVal pFilter As IPixelFilter _
)
public void Set (
int Index,
IPixelFilter pFilter
);
Classes that implement IPixelFilterCollection
Classes | Description |
---|---|
MultibandFilter | A class for multiband filter. |
PixelFilterCollection | A raster filter collection. |