FrameFilterInfo.FrameFilterInfos Property

This property returns a list, containing FrameFilterInfo objects that describe the available frame filters, which can be loaded from frame filter modules (.ftf files).
Syntax:
[C#]
public static FrameFilterInfo[] FrameFilterInfos;
Limitations:

Ready only.

Information:

Introduced in version 3.5

Example:

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

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

<< FrameFilterInfo