XSIApplication.Filters

Introduced

v4.0

Description

Returns a collection of all native and custom Filter objects currently defined in Softimage as a FilterCollection.

C# Syntax

// get accessor
FilterCollection rtn = XSIApplication.Filters;

Examples

VBScript Example

'
'	This example display the name and type of each installed filter
'
set allFilters = Application.Filters
for each f in allFilters
	LogMessage f.Name & ":" & f.Type
next

See Also

Filter