XSIApplication.Filters

導入

v4.0

詳細

現在 Softimage に定義されているネイティブまたはカスタム Filter オブジェクトのコレクションを FilterCollection として戻します。

C#構文

// get accessor

FilterCollection rtn = XSIApplication.Filters;

VBScript の例

'

'	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

関連項目

Filter