IPixelFilterCollection Interface

Provides access to members that control a raster filter collection.

Members

Name Description
Method Append Appends a raster filter to the end.
Method Empty Empties this raster filter collection.
Read-only property FilterCount The number of filters in this collection.
Method Find Finds a given raster filter and returns its index position.
Method Get Gets the raster filter at a given index position.
Method Insert Inserts a raster filter at a given index.
Method Remove Removes a raster filter at a given index.
Method 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.

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