v4.0
Returns a collection of all native and custom Filter objects currently defined in Softimage as a FilterCollection.
// get accessor FilterCollection rtn = XSIApplication.Filters; |
'
' 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
|