<FrameFilters>
Section:
WMConfig
Required:
No
Default:
See description
Product:
Creo Elements/Direct Model Manager, Creo Elements/Direct Drawing Manager
Description
This tag must enclose the entire <FrameFilters> section. This section may be placed anywhere in the file within <WMConfig>, but not within any of the subsections (such as <Options> or <ClassDefs>).
The default configuration (in wmconf.xml) is to keep frames in the current locale, then English, then everything else. Possible customizations might be:
Specify a different locale.
Create a new sequence of filters using existing filters.
Write your own filter. This needs to implement the ILocaleFilter interface.
You should always use the <Index> tag to define the order in which frame filters are applied. Not defining an index can cause unexpected results.
You can clear any existing frame filters by inserting a <clear/> tag at the beginning of your definition.
Example
This example shows a customized configuration for the section:
<FrameFilters>
<LocaleFilter>
<FilterClass>com.osm.biz.util.FilterMultiLocaleKeepSpecifiedLocale</FilterClass>
<Index>1</Index>
<Parameters>
<Locale>en</Locale>
</Parameters>
</LocaleFilter>
</FrameFilters>
Was this helpful?