ICImagingControl.FrameFilterPath Property

Sets a path from which frame filters are loaded.
Syntax:
[C#]
public String FrameFilterPath;
Limitations:

Write only.

Remarks:

By default, frame filters are loaded from the directory of ICImagingControl.ocx. This property can be used to set more than one path.

Information:

Introduced in version 3.0
This property is deprecated since version 3.5.
Use FrameFilterInfo.FrameFilterPath

Example:

The following code fragment sets a frame filter path and displays a list of all frame filters that can be loaded:

[C#]
ICImagingControl1.FrameFilterPath = "..\\filters\\"; foreach( FrameFilterInfo info in ICImagingControl1.FrameFilterInfos ) { System.Diagnostics.Trace.WriteLine("Found filter " + info.Name + " in " + info.ModulePath); }
See also: ICImagingControl, ICImagingControl.FrameFilterInfos

<< ICImagingControl