Table of Contents

Class CustomFilters

Namespace
PolarStudio
Assembly
PolarStudio.dll

This class can be used to create custom filters to add to a dataset

public class CustomFilters : GenericEnumerator<CustomFilter>, IEnumerable
Inheritance
CustomFilters
Implements
Inherited Members
Extension Methods

Methods

Item(object)

This method returns the item for the given index.

public CustomFilter Item(object pIndex)

Parameters

pIndex object

The 1-based index or name of the requested filter

Returns

CustomFilter

The filter.

Exceptions

ArgumentException

If the index is not an int or a string then an exception is thrown.

Remove(object)

This method can be used to remove one specific filter, either by 1-based index or by name.

public void Remove(object pIndex)

Parameters

pIndex object

The 1-based index or name of the filter to remove.

RemoveAll()

This method removes all custom filters.

public void RemoveAll()