<SearchTaskBarItem>
Section:
Options
Required:
No
Value type:
String
Default:
None
Product:
Creo Elements/Direct Model Manager, Creo Elements/Direct Drawing Manager
Description
Defines items that will appear in the Search tab.
The string value defines the text that appears on the pane. The <BusinessObjectClass> attribute specifies the type of class for the search.
If your custom xml file contains one or more <SearchTaskBarItem> tags, Creo Elements/Direct Model Manager displays only those items. However, the Advanced item always appears.
To remove items from the Search tab, add the <SearchTaskBarItem> tags for just the items you want to the <Options> section of your custom xml file.
To add more items to the Search tab, you must add the <SearchTaskBarItem> tags for the existing items to the <Options> section of your custom xml file and add <SearchTaskBarItem> tags for your items.
<SearchTaskBarItem> definitions
Search string
Localization catalog
Message number
<BusinessObjectClass>
Models
model
1173
com.osm.datamgmt.biz.Model
Drawings
model
1174
com.osm.datamgmt.biz.Drawing
Masterdata
model
1175
com.osm.datamgmt.biz.Part
Packets (if enabled)
model
1176
com.osm.biz.WMPacket
Snapshots
model
1177
com.osm.datamgmt.biz.Snapshot
eDrawings
model
1660
com.osm.datamgmt.biz.EDrawing
XVLs
model
1721
com.osm.datamgmt.biz.XVLDoc
Clash Analyses
model
2760
com.osm.datamgmt.biz.ClashAnalysis
This tag may be configured to use a localization catalog.
Example
This example shows an item added for a custom class:
<SearchTaskBarItem>Acme
<BusinessObjectClass>com.acme.datamgmt.biz.AcmeModel</BusinessObjectClass>
</SearchTaskBarItem>
This example will display only the Models, Drawings, and Advanced items on the Search tab:
<SearchTaskBarItem catalog="model" msg_num="1173">Models
<BusinessObjectClass>com.osm.datamgmt.biz.Model</BusinessObjectClass>
</SearchTaskBarItem>
<SearchTaskBarItem catalog="model" msg_num="1174">Drawings
<BusinessObjectClass>com.osm.datamgmt.biz.Drawing</BusinessObjectClass>
</SearchTaskBarItem>
Was this helpful?